body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

body {
    align-items: flex-start;
    background: radial-gradient(circle at center, #111 0, #000 100%);
    color: #fff;
    display: flex;
    font-family: Poppins, sans-serif;
    justify-content: center;
    margin: 0;
    min-height: 100vh
}

.card-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    perspective: 1200px
}

.platinum-card {
    background: url(/static/media/credit2.ce828e59e3ba0c62d275.png) no-repeat 50%/cover;
    background-size: cover;
    border: 2px solid #ffffff4d;
    border-radius: 16px;
    box-shadow: 0 0 20px #c0c0c0cc, 0 0 40px #e0e0e080;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .8s ease;
    width: 420px
}

.platinum-card.flipped {
    transform: rotateY(180deg)
}

@keyframes shine {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

.card-face {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    color: #111;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 20px;
    position: absolute;
    width: 100%
}

.card-front {
    text-align: left
}

.card-back {
    text-align: center;
    transform: rotateY(180deg)
}

.brand-title {
    font-size: 1.2rem;
    text-shadow: 0 1px 2px #ffffffb3
}

.brand-title,
.logo-circle {
    color: #000;
    font-weight: 700
}

.logo-circle {
    align-items: center;
    background: #ffffff4d;
    border-radius: 50%;
    box-shadow: inset 0 0 10px hsla(0, 0%, 100%, .486);
    display: flex;
    height: 70px;
    justify-content: center;
    width: 70px
}

.card-name {
    font-size: 1.2rem;
    font-weight: 700
}

.card-role {
    color: #333;
    font-size: .9rem
}

.address {
    color: #575656;
    font-size: .85rem;
    line-height: 1.4
}

.qr-shape {
    font-size: 1.4rem;
    margin-top: 5px
}

.platinum-btn {
    background: linear-gradient(135deg, #eec231, #ffe678, #fac412);
    border: 1px solid #ccc;
    border-radius: 50px;
    box-shadow: 0 4px 12px #00000014;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease-in-out
}

.platinum-btn:hover {
    background: linear-gradient(135deg, #ececec, #cfcfcf, #eaeaea);
    box-shadow: 0 6px 16px #00000026;
    transform: translateY(-2px)
}

.platinum-btn:active {
    box-shadow: inset 0 3px 10px #0000001a;
    transform: translateY(0)
}

@media (max-width:480px) {
    .platinum-card {
        height: 310px;
        width: 360px
    }

    .brand-title {
        font-size: 1rem
    }

    .logo-circle {
        height: 40px;
        width: 40px
    }

    .logo-circle img {
        height: 30px;
        width: 30px
    }

    .card-name {
        font-size: .9rem
    }

    .card-phone,
    .card-role {
        font-size: .75rem
    }

    .address {
        font-size: .7rem
    }

    .platinum-btn {
        font-size: 12px;
        padding: 8px 15px
    }
}

.business-card {
    background: linear-gradient(135deg, #dcdcdc, #f5f5f5, silver);
    border-radius: 15px;
    box-shadow: 0 10px 25px #0000004d;
    height: 180px;
    perspective: 1000px;
    transition: transform .7s ease, box-shadow .7s ease;
    width: 320px
}

.business-card:hover {
    box-shadow: 0 15px 35px #0006;
    transform: rotateY(12deg) scale(1.05)
}

/*# sourceMappingURL=main.c73c33f1.css.map*/