/* Enhanced Professional UI Design */
:root {
    --primary-color: #E50914;       /* Netflix red for CTAs & highlights */
    --secondary-color: #0C0C1D;     /* Dark blue-black background */
    --accent-color: #B81D24;        /* Darker red for accents */
    --dark-color: #121212;          /* Slightly lighter than secondary */
    --light-color: #FFFFFF;         /* Primary text */
    --muted-color: #B3B3B3;         /* Secondary text */
    --success-color: #2ECC71;        /* Green for success states */
    --warning-color: #F39C12;       /* Orange for warnings */
    --danger-color: #E74C3C;        /* Red for errors */
    --telegram-color: #0088CC;      /* Telegram brand color */
    --whatsapp-color: #25D366;      /* WhatsApp brand color */
    --card-bg: rgba(255, 255, 255, 0.03);  /* Card background */
    --card-border: rgba(255, 255, 255, 0.08); /* Card border */
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--secondary-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
}

.primary-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.primary-btn:active {
    transform: translateY(0);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(12, 12, 29, 0.98);
    backdrop-filter: blur(8px);
    padding: 18px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--muted-color);
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--light-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.login-btn {
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.register-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.telegram-btn {
    background-color: var(--telegram-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--dark-color);
    border-radius: 6px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu li a {
    color: var(--muted-color);
    font-size: 0.9rem;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-menu li:hover a {
    color: var(--light-color);
    padding-left: 5px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    order: 1;
    margin-left: auto;
    z-index: 1001;
    width: 24px;
    height: 24px;
    position: relative;
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.bar:nth-child(1) {
    top: 6px;
}

.bar:nth-child(2) {
    top: 11px;
}

.bar:nth-child(3) {
    top: 16px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--muted-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--light-color);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--dark-color);
        flex-direction: column;
        gap: 0;
        transition: 0.3s;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: left;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .close-btn {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: none;
        margin-top: 10px;
        border: none;
        transform: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        padding: 10px 0 10px 20px;
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(12, 12, 29, 0.9), rgba(12, 12, 29, 0.95)), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(229, 9, 20, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light-color);
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--muted-color);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/dot-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--light-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 9, 20, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: rgba(229, 9, 20, 0.2);
    transform: rotate(5deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.feature-card p {
    color: var(--muted-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Predictors Section */
.predictors-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
}

.predictors-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.predictors-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--light-color);
    position: relative;
}

.predictors-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.predictors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.predictor-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.predictor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.predictor-card:hover .game-icon {
    background-color: rgba(229, 9, 20, 0.2);
    transform: scale(1.1);
}

.game-icon img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.predictor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.predictor-card p {
    color: var(--muted-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.predictor-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.predictor-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

/* Prediction Messages */
.prediction-message {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
}

.prediction-message:hover {
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prediction-sport {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--light-color);
}

.prediction-sport img {
    width: 24px;
    height: 24px;
}

.prediction-date {
    color: var(--muted-color);
    font-size: 0.85rem;
}

.prediction-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.prediction-team {
    flex: 1;
}

.prediction-team-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.prediction-team-logo img {
    max-width: 100%;
    max-height: 100%;
}

.prediction-team-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.prediction-vs {
    font-size: 0.9rem;
    color: var(--muted-color);
    padding: 0 10px;
}

.prediction-details {
    margin-top: 20px;
}

.prediction-tip {
    background-color: rgba(229, 9, 20, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.prediction-odds {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.odds-item {
    text-align: center;
    flex: 1;
}

.odds-label {
    font-size: 0.8rem;
    color: var(--muted-color);
    margin-bottom: 5px;
}

.odds-value {
    font-weight: 600;
    color: var(--light-color);
}

.prediction-confidence {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confidence-bar {
    flex: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-level {
    height: 100%;
    background: linear-gradient(to right, #E50914, #B81D24);
    border-radius: 3px;
}

.confidence-value {
    font-size: 0.85rem;
    color: var(--muted-color);
}

/* Telegram Banner */
.telegram-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--telegram-color), #006B9F);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.telegram-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.telegram-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.telegram-banner .container {
    position: relative;
    z-index: 1;
}

.telegram-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.telegram-banner p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.telegram-banner .telegram-btn {
    background-color: white;
    color: var(--telegram-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.telegram-banner .telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--light-color);
    position: relative;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(229, 9, 20, 0.3);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(229, 9, 20, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.feature-text {
    flex: 1;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--light-color);
}

.feature-item p {
    color: var(--muted-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.disclaimer-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--muted-color);
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #080817;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(229, 9, 20, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: var(--muted-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--muted-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--muted-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--light-color);
    transform: translateX(3px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--muted-color);
    font-size: 0.9rem;
}

.legal-disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Support */
.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.telegram-float, .whatsapp-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.telegram-float {
    background-color: var(--telegram-color);
}

.whatsapp-float {
    background-color: var(--whatsapp-color);
}

.telegram-float:hover, .whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Legal Pages */
.legal-content {
    padding: 150px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 15px;
}

.legal-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
    color: var(--light-color);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--muted-color);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--muted-color);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .about-section h2,
    .predictors-section h2,
    .features-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .about-section h2,
    .predictors-section h2,
    .features-section h2 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .predictor-card {
        padding: 20px;
    }
    
    .floating-support {
        bottom: 20px;
        right: 20px;
    }
    
    .telegram-float,
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}