/* Reset & Root Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #090308;
    --card-bg: #120710;
    --border-color: #2f1911;
    --gold-primary: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --text-main: #f3f4f6;
    --text-muted: #a1a1aa;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(18, 7, 16, 0.8) 0%, transparent 70%);
}

.container {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

/* Header Styles */
.header {
    margin-bottom: 3.5rem;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Cards Layout */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    background: rgba(9, 3, 8, 0.6);
    border: 1px solid var(--border-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.card-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Button Styling */
.btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--gold-primary);
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn .arrow {
    transition: transform 0.3s ease;
}

.btn:hover {
    background: #e6c247;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Footer */
.footer {
    color: rgba(161, 161, 170, 0.5);
    font-size: 0.8rem;
}

/* Responsive design */
@media (max-width: 640px) {
    .main-title {
        font-size: 2.25rem;
    }
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        max-width: 100%;
    }
}