* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alexandria', sans-serif;
    background: #f8f6f2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.card {
    max-width: 520px;
    width: 100%;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 48px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.badge {
    display: inline-block;
    background: #f2efe8;
    color: #a8873a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.club-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.club-name span {
    color: #c9a84c;
    font-weight: 300;
}

.sub-title {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 0.8rem 0;
    display: inline-block;
}

.membership-card {
    background: #1a1a1a;
    color: #fff;
    padding: 2.2rem 1.8rem;
    border-radius: 32px;
    margin: 1.8rem 0 2.5rem;
    position: relative;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.membership-card::after {
    content: '✦';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 1.2rem;
    color: rgba(212, 175, 55, 0.3);
}

.card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9a84c;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0.8rem 0 1.2rem;
    direction: ltr;
}

.card-footer-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-footer-text span:last-child {
    color: rgba(212, 175, 55, 0.6);
}

.price-block {
    margin: 2rem 0 1.8rem;
}

.price {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.price small {
    font-size: 1.2rem;
    font-weight: 300;
    color: #7a7a7a;
    margin-right: 4px;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
    margin-top: 0.2rem;
}

.btn-gold {
    display: inline-block;
    background: #c9a84c;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 3.5rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px -6px rgba(201, 168, 76, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
}

.btn-gold:hover {
    background: #b8973a;
    transform: translateY(-2px);
}

.footer-note {
    margin-top: 2.2rem;
    font-size: 0.7rem;
    color: #bbb;
    letter-spacing: 0.5px;
    border-top: 1px solid #f0ede8;
    padding-top: 1.8rem;
}

.footer-note span {
    color: #c9a84c;
}

@media (max-width: 480px) {
    .card {
        padding: 2rem 1.5rem;
        border-radius: 32px;
    }
    .club-name {
        font-size: 2rem;
    }
    .price {
        font-size: 2.6rem;
    }
    .membership-card {
        padding: 1.8rem 1.2rem;
    }
    .btn-gold {
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}