/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(at bottom right, #005587, #000000);
    background-attachment: fixed;
    color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium & Sniper new cards */
.membership-card#premium {
    border: 2px solid #d4af37;
    background: linear-gradient(150deg, rgba(212,175,55,0.18), rgba(0,0,0,0.65));
    box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

.membership-card#premium .card-title {
    color: #ffd700;
    text-shadow: 0 0 6px rgba(255,222,89,0.35);
}

.membership-card#sniper-passes {
    border: 2px dashed #888;
    background: linear-gradient(140deg, rgba(136,136,136,0.2), rgba(0,0,0,0.55));
}

.membership-card#sniper-passes .card-title {
    color: #ffffff;
}

.membership-card#sniper-passes button.btn {
    background:#444;
}

.membership-card#sniper-passes button.btn:hover {
    background:#555;
}

#sniper-status {
    font-family: monospace;
    opacity: 0.85;
}

.container {
    max-width: 1000px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
}

.header {
    margin-bottom: 50px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FFD100, #FFB81C, #2774AE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 10px;
    font-weight: 300;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Membership Grid */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.membership-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, #2774AE, #005587);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.membership-card:hover::before {
    opacity: 0.1;
}

.membership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 209, 0, 0.2);
    border-color: #FFD100;
}

.card-description {
    color: #d1d5db;
    font-size: 1rem;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 1.5;
}

/* Enhanced Card Layout */
.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.card-features {
    margin-bottom: 25px;
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #d1d5db;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD100;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Premium Badge */
.premium-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FFD100 0%, #FF6B35 100%);
    color: #1a1a2e;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.premium-card {
    border: 2px solid rgba(255, 209, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 209, 0, 0.1), rgba(255, 209, 0, 0.02));
}

.premium-card .card-icon {
    color: #FFD100;
}

/* Icon Colors */
.madden-btn .card-icon,
.membership-card:nth-child(2) .card-icon {
    color: #2774AE;
}

.college-btn .card-icon,
.membership-card:nth-child(3) .card-icon {
    color: #8BB8E8;
}

/* Button Styling */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.btn i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

/* Home Button */
.home-btn {
    background: linear-gradient(135deg, #FFD100 0%, #FFB81C 100%);
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 209, 0, 0.3);
}

.home-btn:hover {
    background: linear-gradient(135deg, #FFB81C 0%, #FFD100 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 209, 0, 0.4);
}

/* Madden Button */
.madden-btn {
    background: linear-gradient(135deg, #2774AE 0%, #005587 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(39, 116, 174, 0.3);
}

.madden-btn:hover {
    background: linear-gradient(135deg, #005587 0%, #2774AE 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(39, 116, 174, 0.4);
}

/* College Button */
.college-btn {
    background: linear-gradient(135deg, #8BB8E8 0%, #2774AE 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 184, 232, 0.3);
}

.college-btn:hover {
    background: linear-gradient(135deg, #2774AE 0%, #8BB8E8 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 184, 232, 0.4);
}

/* Premium Bundle Button */
.premium-btn {
    background: linear-gradient(135deg, #FFB81C 0%, #FFD100 100%);
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 184, 28, 0.3);
}

.premium-btn:hover {
    background: linear-gradient(135deg, #FFD100 0%, #FFB81C 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 184, 28, 0.4);
}

/* Disabled Button */
.btn.disabled {
    background: linear-gradient(135deg, #444 0%, #333 100%);
    cursor: not-allowed;
    opacity: 0.5;
}

.btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Payment Link Styling */
a {
    color: #FFD100;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFB81C;
    text-decoration: underline;
}

.football-emoji {
    font-size: 1.3em;
    vertical-align: middle;
    margin: 0 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Home Section */
.home-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.home-section .membership-card {
    max-width: 300px;
    min-height: auto;
    padding: 20px;
}

.home-section .card-description {
    margin-top: 15px;
    margin-bottom: 0;
}

/* Billing Toggle Styles */
.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-label input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
    accent-color: #FFD100;
}

.toggle-label:hover {
    color: #FFD100;
}

.toggle-label input[type="radio"]:checked + span {
    color: #FFD100;
    font-weight: 600;
}

.discount-badge {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
}