/* 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;
}

.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;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-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;
}

.dashboard-card:hover::before {
    opacity: 0.1;
}

.dashboard-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: 0.95rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* 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;
}

.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);
}

/* Grayed-Out Buttons for Restricted Access */
.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);
    }
}

/* Fix Subscription Section */
.fix-subscription-section {
    margin-top: 40px;
    padding: 0 20px;
}

.fix-subscription-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(220, 53, 69, 0.15));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 0 auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fix-subscription-card h3 {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fix-subscription-card p {
    color: #e9ecef;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fix-btn {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.fix-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(45deg, #ffca2c, #fd7e14);
}

.fix-btn:active {
    transform: translateY(0);
}

.fix-btn i {
    margin-right: 8px;
}

.fix-description {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-bottom: 0;
}

.fix-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.fix-success {
    border-color: rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(23, 162, 184, 0.15));
}

.fix-success h3 {
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dashboard-card {
        padding: 25px 15px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .fix-subscription-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .fix-subscription-card h3 {
        font-size: 1.3rem;
    }
}