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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0e1a;
    color: #fff;
    overflow-x: hidden;
}

/* Animated Laboratory Background */
.lab-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.beaker {
    position: absolute;
    width: 100px;
    height: 120px;
    opacity: 0.1;
    animation: float-beaker 20s infinite ease-in-out;
}

.beaker:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.beaker:nth-child(2) { left: 60%; top: 60%; animation-delay: 5s; }
.beaker:nth-child(3) { left: 80%; top: 30%; animation-delay: 10s; }
.beaker:nth-child(4) { left: 30%; top: 70%; animation-delay: 15s; }

@keyframes float-beaker {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-60px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(3deg); }
}

.tennis-ball {
    position: absolute;
    font-size: 60px;
    opacity: 0.08;
    animation: float-tennis 18s infinite ease-in-out;
}

.tennis-ball:nth-child(5) { left: 15%; top: 50%; animation-delay: 0s; }
.tennis-ball:nth-child(6) { left: 75%; top: 15%; animation-delay: 4s; }
.tennis-ball:nth-child(7) { left: 85%; top: 70%; animation-delay: 8s; }
.tennis-ball:nth-child(8) { left: 40%; top: 10%; animation-delay: 12s; }
.tennis-ball:nth-child(9) { left: 25%; top: 85%; animation-delay: 16s; }

@keyframes float-tennis {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-80px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-40px) rotate(270deg) scale(1.05);
    }
}

.molecule {
    position: absolute;
    font-size: 80px;
    opacity: 0.06;
    animation: spin-molecule 25s infinite linear;
}

.molecule:nth-child(10) { left: 50%; top: 40%; animation-delay: 0s; }
.molecule:nth-child(11) { left: 10%; top: 80%; animation-delay: 12s; }

@keyframes spin-molecule {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
        opacity: 0.06;
    }
    50% {
        transform: rotate(180deg) translateX(30px) rotate(-180deg);
        opacity: 0.1;
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
        opacity: 0.06;
    }
}

.particle-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 163, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 163, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 40% 70%, rgba(0, 255, 163, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(0, 255, 163, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 163, 0.03) 2px, transparent 2px);
    background-size: 100% 100%;
    opacity: 0.5;
    pointer-events: none;
}

.particle-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0%, transparent 48%, rgba(0, 255, 163, 0.02) 50%, transparent 52%, transparent 100%),
        linear-gradient(45deg, transparent 0%, transparent 48%, rgba(0, 255, 163, 0.02) 50%, transparent 52%, transparent 100%);
    background-size: 300px 300px;
    animation: drift-network 30s infinite linear;
}

@keyframes drift-network {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 163, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 163, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 30px 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 255, 163, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    height: 70px;
    width: auto;
    border-radius: 15px;
    filter: drop-shadow(0 8px 20px rgba(0, 255, 163, 0.5));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 23, 42, 0.3);
    padding: 5px;
    border: 2px solid rgba(0, 255, 163, 0.2);
}

.logo-image:hover {
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 12px 30px rgba(0, 255, 163, 0.7));
    border-color: rgba(0, 255, 163, 0.5);
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(0, 255, 163, 0.2);
    border-radius: 50%;
    color: #00ff9f;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(0, 255, 163, 0.1);
    border-color: rgba(0, 255, 163, 0.5);
    box-shadow: 0 8px 20px rgba(0, 255, 163, 0.4);
}

.cta-button {
    padding: 14px 35px;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    color: #0a0e1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 255, 163, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 255, 163, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-button {
    padding: 12px 24px;
    background: transparent;
    color: #00ff9f;
    border: 2px solid rgba(0, 255, 163, 0.5);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.contact-button:hover {
    background: rgba(0, 255, 163, 0.1);
    border-color: #00ff9f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 163, 0.3);
}

.contact-button svg {
    stroke: #00ff9f;
}

.contact-icon-button {
    width: 44px;
    height: 44px;
    background: transparent;
    color: #00ff9f;
    border: 2px solid rgba(0, 255, 163, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-icon-button:hover {
    background: rgba(0, 255, 163, 0.1);
    border-color: #00ff9f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 163, 0.3);
}

.contact-icon-button svg {
    stroke: #00ff9f;
}

.telegram-button {
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.8);
    color: #00e4ff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 255, 163, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
}

.telegram-button:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(0, 228, 255, 0.1);
    border-color: rgba(0, 255, 163, 0.5);
    box-shadow: 0 8px 30px rgba(0, 228, 255, 0.3);
}

.reviews-button {
    padding: 18px 50px;
    background: rgba(15, 23, 42, 0.8);
    color: #fbbf24;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(251, 191, 36, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reviews-button:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
}

.stats-button {
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.8);
    color: #a78bfa;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(123, 47, 247, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stats-button:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(123, 47, 247, 0.1);
    border-color: rgba(123, 47, 247, 0.5);
    box-shadow: 0 8px 30px rgba(123, 47, 247, 0.3);
}

.reviews-button-header {
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.8);
    color: #fbbf24;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(251, 191, 36, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews-button-header:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
}

.bookmakers-button {
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.8);
    color: #fb923c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(251, 146, 60, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bookmakers-button:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.5);
    box-shadow: 0 8px 30px rgba(251, 146, 60, 0.3);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.15) 0%, transparent 70%);
    animation: pulse-glow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero-logo-bg {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    height: 100%;
    background-image: url('logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    filter: brightness(0.7) saturate(0.5);
    z-index: 0;
    pointer-events: none;
}

.lab-icon-main {
    font-size: 140px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.test-tube {
    display: inline-block;
    animation: tilt-tube 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(0, 255, 163, 0.5));
    transform-origin: bottom center;
}

.liquid-drop {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg,
        rgba(0, 255, 163, 0.9) 0%,
        rgba(0, 255, 163, 0.7) 50%,
        rgba(0, 255, 163, 0) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(8px) drop-shadow(0 5px 20px rgba(0, 255, 163, 0.8));
    animation: liquid-flow 3s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes float-main {
    0% {
        transform: translate(-50%, -50%) translate(200px, -100px) rotate(-2deg);
    }
    25% {
        transform: translate(-50%, -50%) translate(200px, 100px) rotate(2deg);
    }
    50% {
        transform: translate(-50%, -50%) translate(-200px, 100px) rotate(-2deg);
    }
    75% {
        transform: translate(-50%, -50%) translate(-200px, -100px) rotate(2deg);
    }
    100% {
        transform: translate(-50%, -50%) translate(200px, -100px) rotate(-2deg);
    }
}

@keyframes tilt-tube {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-25deg) translateY(-20px);
    }
}

@keyframes liquid-flow {
    0% {
        opacity: 0;
        transform: translateY(-30px) scaleY(0.5);
    }
    30% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
    60% {
        opacity: 0.8;
        transform: translateY(40px) scaleY(1.3);
    }
    100% {
        opacity: 0;
        transform: translateY(80px) scaleY(1.5);
    }
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero .tagline {
    font-size: 28px;
    color: #a0b5cc;
    font-weight: 300;
}

.hero p {
    font-size: 22px;
    color: #7a8ea6;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Laboratory Stats with Test Tubes */
.stats {
    padding: 100px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(15, 23, 42, 0.7);
    padding: 50px 35px;
    border-radius: 30px;
    border: 2px solid rgba(0, 255, 163, 0.15);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(0, 255, 163, 0.5);
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.3);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: rotate-slow 10s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-number {
    font-size: 58px;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label {
    color: #7a8ea6;
    font-size: 18px;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.reviews h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -2px;
}

.reviews h2 span {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-subtitle {
    text-align: center;
    font-size: 20px;
    color: #7a8ea6;
    margin-bottom: 80px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.review-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 26, 0.9) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(251, 191, 36, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.6s;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.15);
    transform: translateY(-8px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.reviewer-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.reviewer-title {
    font-size: 14px;
    color: #7a8ea6;
}

.review-rating {
    font-size: 18px;
    color: #fbbf24;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #b8c5d6;
    margin-bottom: 25px;
}

.review-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 8px 16px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #00ff9f;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
}

.features h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 80px;
    font-weight: 900;
    letter-spacing: -2px;
}

.features h2 span {
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 26, 0.9) 100%);
    padding: 50px;
    border-radius: 30px;
    border: 2px solid rgba(0, 255, 163, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: rgba(0, 255, 163, 0.5);
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.2);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.feature-card p {
    color: #7a8ea6;
    line-height: 1.8;
    font-size: 17px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, transparent 100%);
}

.pricing h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -2px;
}

.pricing h2 span {
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    text-align: center;
    font-size: 20px;
    color: #7a8ea6;
    margin-bottom: 80px;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
    padding: 60px;
    border-radius: 30px;
    border: 2px solid rgba(0, 255, 163, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.1) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    color: #0a0e1a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-description {
    color: #7a8ea6;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 40px;
}

.price-amount {
    font-size: 68px;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 24px;
    color: #7a8ea6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 15px 0;
    font-size: 17px;
    color: #b8c5d6;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 255, 163, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-check {
    font-size: 24px;
    color: #00ff9f;
}

.payment-section {
    background: rgba(10, 14, 26, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 163, 0.2);
    margin-bottom: 30px;
}

.payment-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #00ff9f;
}

.payment-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(0, 255, 163, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.payment-input:focus {
    outline: none;
    border-color: rgba(0, 255, 163, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.2);
}

.payment-input::placeholder {
    color: #7a8ea6;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    padding: 15px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(0, 255, 163, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 14px;
    color: #7a8ea6;
}

.payment-method:hover,
.payment-method.active {
    border-color: rgba(0, 255, 163, 0.5);
    background: rgba(0, 255, 163, 0.1);
    color: #00ff9f;
}

.subscribe-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    color: #0a0e1a;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 255, 163, 0.4);
}

.subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 163, 0.6);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
    font-size: 14px;
    color: #7a8ea6;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Analysis Section */
.analysis {
    padding: 100px 0;
    position: relative;
}

.analysis h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -2px;
}

.analysis h2 span {
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analysis-subtitle {
    text-align: center;
    font-size: 20px;
    color: #7a8ea6;
    margin-bottom: 60px;
}

.analysis-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.analysis-pair {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: stretch;
}

.analysis-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 255, 163, 0.15);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 26, 0.9) 100%);
    flex: 1;
    max-width: 500px;
}

.analysis-pair .analysis-card:first-child {
    border-radius: 20px 0 0 20px;
    border-right: 1px solid rgba(0, 255, 163, 0.15);
}

.analysis-pair .analysis-card:last-child {
    border-radius: 0 20px 20px 0;
    border-left: 1px solid rgba(0, 255, 163, 0.15);
}

.analysis-card img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    background: rgba(10, 14, 26, 0.5);
}

.analysis-card:hover {
    border-color: rgba(0, 255, 163, 0.5);
    box-shadow: 0 8px 30px rgba(0, 255, 163, 0.25);
    z-index: 1;
}

.analysis-card:hover img {
    transform: scale(1.05);
}

.analysis-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.analysis-card:hover .analysis-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 12px rgba(0, 255, 163, 0.8));
}

/* Modal/Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.modal-close:hover,
.modal-close:focus {
    color: #00ff9f;
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    position: relative;
}

.faq h2 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -2px;
}

.faq h2 span {
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    text-align: center;
    font-size: 20px;
    color: #7a8ea6;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(0, 255, 163, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(0, 255, 163, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 163, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: #00ff9f;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 20px;
    opacity: 1;
}

.faq-answer p {
    color: #b4c7e7;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Bookmakers Section */
.bookmakers {
    padding: 100px 0;
    position: relative;
}

.bookmakers h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

.bookmakers h2 span {
    background: linear-gradient(135deg, #00ff9f 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bookmakers-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 60px;
}

.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bookmaker-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 2px solid rgba(0, 255, 163, 0.2);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bookmaker-card:hover {
    border-color: rgba(0, 255, 163, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.25);
}

.bookmaker-card.coming-soon {
    opacity: 0.6;
}

.bookmaker-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.bookmaker-link {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
}

.bookmaker-link:hover {
    transform: scale(1.05);
}

.bookmaker-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.bookmaker-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.bookmaker-logo.placeholder {
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.1) 0%, rgba(0, 184, 255, 0.1) 100%);
    border: 2px dashed rgba(0, 255, 163, 0.3);
}

.bookmaker-logo.placeholder span {
    font-size: 50px;
}

.bookmaker-info {
    width: 100%;
}

.bookmaker-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.bookmaker-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.bookmaker-features li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 163, 0.1);
}

.bookmaker-features li:last-child {
    border-bottom: none;
}

.bookmaker-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00ff9f 0%, #00b8ff 100%);
    color: #0a0e1a;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.bookmaker-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 163, 0.4);
}

.coming-soon-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-style: italic;
}

/* Bookmakers responsive */
@media (max-width: 992px) {
    .bookmakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bookmakers {
        padding: 70px 0;
    }

    .bookmakers h2 {
        font-size: 32px;
    }

    .bookmakers-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .bookmakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bookmaker-card {
        padding: 25px;
    }

    .bookmaker-logo {
        height: 100px;
    }
}

/* CTA Section */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.2) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.final-cta h2 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 24px;
    color: #7a8ea6;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.cta-button-large {
    padding: 22px 60px;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    color: #0a0e1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 255, 163, 0.5);
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 70px rgba(0, 255, 163, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid rgba(0, 255, 163, 0.1);
    color: #7a8ea6;
    font-size: 15px;
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container { max-width: 1600px; }
    .hero-logo-bg { max-width: 1100px; }
    .hero h1 { font-size: 80px; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop/Laptop (1024px - 1399px) - DEFAULT */

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .container { padding: 0 30px; }

    .hero { padding: 160px 0 100px; }
    .hero-logo-bg { max-width: 700px; }
    .hero h1 { font-size: 56px; }
    .hero .tagline { font-size: 24px; }
    .hero p { font-size: 20px; max-width: 600px; }
    .lab-icon-main { font-size: 120px; }
    .liquid-drop { width: 35px; height: 70px; }

    .stats-container { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .stat-card { padding: 40px 25px; }
    .stat-number { font-size: 48px; }

    .reviews h2 { font-size: 48px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .feature-card { padding: 40px; }

    .pricing-card { padding: 50px 40px; }
    .cta-button-large { padding: 20px 50px; font-size: 18px; }

    .analysis h2 { font-size: 48px; }
    .analysis-grid { gap: 35px; }

    .faq h2 { font-size: 48px; }
    .faq-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .container { padding: 0 25px; }

    header { padding: 20px 0; }
    .header-content { flex-direction: column; gap: 20px; align-items: stretch; }
    .header-left { flex-direction: column; gap: 20px; width: 100%; align-items: center; }
    .header-buttons { width: 100%; justify-content: center; flex-wrap: wrap; }
    .header-right { width: 100%; justify-content: center; flex-wrap: wrap; }
    .contact-button { padding: 10px 20px; font-size: 13px; }
    .contact-icon-button { width: 40px; height: 40px; }
    .cta-button { padding: 12px 28px; font-size: 14px; }
    .logo-image { height: 60px; }

    .hero { padding: 140px 0 80px; }
    .hero-logo-bg { max-width: 600px; opacity: 0.06; }
    .hero h1 { font-size: 48px; }
    .hero .tagline { font-size: 22px; }
    .hero p { font-size: 18px; padding: 0 10px; }
    .lab-icon-main { font-size: 100px; }
    .liquid-drop { width: 30px; height: 60px; }
    .cta-button-large { padding: 18px 40px; font-size: 16px; }

    .stats { padding: 80px 0; }
    .stats-container { grid-template-columns: 1fr; gap: 25px; max-width: 400px; }
    .stat-card { padding: 35px 25px; }
    .stat-number { font-size: 52px; }
    .stat-label { font-size: 16px; }

    .reviews { padding: 80px 0; }
    .reviews h2 { font-size: 42px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 30px; }
    .review-card { padding: 35px 25px; }

    .features { padding: 80px 0; }
    .features h2 { font-size: 42px; margin-bottom: 60px; }
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
    .feature-card { padding: 35px; }
    .feature-card h3 { font-size: 24px; }

    .pricing { padding: 80px 0; }
    .pricing h2 { font-size: 42px; }
    .pricing-card { padding: 40px 30px; }
    .pricing-card h3 { font-size: 36px; }
    .price-amount { font-size: 52px; }
    .payment-methods { grid-template-columns: 1fr; }

    .analysis { padding: 80px 0; }
    .analysis h2 { font-size: 42px; }
    .analysis-subtitle { font-size: 18px; }
    .analysis-grid { gap: 30px; }
    .analysis-pair { flex-direction: column; gap: 0; }
    .analysis-pair .analysis-card:first-child {
        border-radius: 20px 20px 0 0;
        border-right: 2px solid rgba(0, 255, 163, 0.15);
        border-bottom: 1px solid rgba(0, 255, 163, 0.15);
    }
    .analysis-pair .analysis-card:last-child {
        border-radius: 0 0 20px 20px;
        border-left: 2px solid rgba(0, 255, 163, 0.15);
        border-top: 1px solid rgba(0, 255, 163, 0.15);
    }
    .analysis-card { max-width: 100%; }

    .faq { padding: 80px 0; }
    .faq h2 { font-size: 42px; }
    .faq-subtitle { font-size: 18px; }
    .faq-grid { grid-template-columns: 1fr; gap: 20px; }
    .faq-item { padding: 25px; }
    .faq-question h3 { font-size: 18px; }

    .final-cta { padding: 100px 0; }
    .final-cta h2 { font-size: 42px; }
    .final-cta p { font-size: 20px; }
}

/* Mobile (up to 599px) */
@media (max-width: 599px) {
    .container { padding: 0 20px; }

    header { padding: 15px 0; }
    .header-content { gap: 15px; }
    .header-left { gap: 15px; }
    .logo-image { height: 55px; }
    .cta-button { padding: 12px 28px; font-size: 14px; }
    .telegram-button, .stats-button, .reviews-button-header { font-size: 12px; padding: 8px 16px; }

    .hero { padding: 120px 0 60px; }
    .hero-logo-bg { max-width: 450px; opacity: 0.05; }
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
    .hero .tagline { font-size: 18px; }
    .hero p { font-size: 16px; line-height: 1.5; }
    .lab-icon-main { font-size: 80px; margin-bottom: 20px; }
    .liquid-drop { width: 25px; height: 50px; bottom: -15px; }
    .cta-button-large {
        padding: 16px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }

    .stats { padding: 60px 0; }
    .stats-container { gap: 20px; }
    .stat-card { padding: 30px 20px; }
    .stat-icon { font-size: 40px; }
    .stat-number { font-size: 44px; }
    .stat-label { font-size: 15px; }

    .reviews { padding: 60px 0; }
    .reviews h2 { font-size: 32px; }
    .reviews-subtitle { font-size: 16px; margin-bottom: 40px; }
    .reviews-grid { gap: 25px; grid-template-columns: 1fr; }
    .review-card { padding: 30px 20px; }
    .reviewer-avatar { width: 50px; height: 50px; font-size: 24px; }
    .reviewer-info h4 { font-size: 18px; }
    .review-text { font-size: 15px; }
    .reviews-button { padding: 16px 35px; font-size: 15px; }

    .features { padding: 60px 0; }
    .features h2 { font-size: 32px; margin-bottom: 40px; }
    .features-grid { gap: 25px; }
    .feature-card { padding: 30px 25px; }
    .feature-icon { font-size: 50px; }
    .feature-card h3 { font-size: 22px; margin-bottom: 15px; }
    .feature-card p { font-size: 16px; line-height: 1.6; }

    .pricing { padding: 60px 0; }
    .pricing h2 { font-size: 32px; }
    .pricing-subtitle { font-size: 16px; margin-bottom: 40px; }
    .pricing-card { padding: 30px 20px; }
    .pricing-badge { font-size: 12px; padding: 6px 16px; }
    .pricing-card h3 { font-size: 30px; }
    .pricing-description { font-size: 16px; }
    .price-amount { font-size: 48px; }
    .price-period { font-size: 20px; }
    .pricing-features li { font-size: 15px; padding: 12px 0; }
    .feature-check { font-size: 20px; }
    .payment-section { padding: 25px 20px; }
    .payment-section h4 { font-size: 18px; }
    .payment-input { padding: 14px 18px; font-size: 15px; }
    .subscribe-button { padding: 18px; font-size: 16px; }

    .analysis { padding: 70px 0; }
    .analysis h2 { font-size: 36px; }
    .analysis-subtitle { font-size: 16px; margin-bottom: 40px; }
    .analysis-grid { gap: 25px; }
    .analysis-pair { flex-direction: column; }
    .modal-content { max-width: 95%; }
    .modal-close { right: 20px; font-size: 40px; }

    .faq { padding: 70px 0; }
    .faq h2 { font-size: 36px; }
    .faq-subtitle { font-size: 16px; margin-bottom: 40px; }
    .faq-grid { grid-template-columns: 1fr; gap: 15px; }
    .faq-item { padding: 20px; }
    .faq-question h3 { font-size: 17px; }
    .faq-icon { font-size: 24px; }
    .faq-toggle { font-size: 28px; }
    .faq-answer p { font-size: 15px; }

    .final-cta { padding: 80px 0; }
    .final-cta h2 { font-size: 32px; }
    .final-cta p { font-size: 18px; }

    footer { padding: 40px 0; font-size: 13px; }

    /* Hero section button layout for mobile */
    .hero > .container > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hero .telegram-button,
    .hero .reviews-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.contact-modal-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(10, 14, 26, 0.98) 100%);
    margin: 5% auto;
    padding: 50px;
    border: 2px solid rgba(0, 255, 163, 0.3);
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 255, 163, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal-close {
    color: #00ff9f;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.contact-modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.contact-modal-content h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff9f 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-align: center;
}

.contact-modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-align: center;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #00ff9f;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(0, 255, 163, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00ff9f;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.2);
    background: rgba(15, 23, 42, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 15px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 12px;
    border-left: 4px solid #00ff9f;
    margin: 0;
}

.contact-info strong {
    color: #00ff9f;
}

.contact-submit-button {
    background: linear-gradient(135deg, #00ff9f 0%, #00b8ff 100%);
    color: #0a0e1a;
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 255, 163, 0.3);
    margin-top: 10px;
}

.contact-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 163, 0.5);
}

.contact-submit-button:active {
    transform: translateY(-1px);
}

.form-status {
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-status.success {
    background: rgba(0, 255, 163, 0.15);
    color: #00ff9f;
    border: 2px solid rgba(0, 255, 163, 0.3);
    display: block;
}

.form-status.error {
    background: rgba(255, 77, 77, 0.15);
    color: #ff4d4d;
    border: 2px solid rgba(255, 77, 77, 0.3);
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-modal-content {
        padding: 30px 20px;
        margin: 10% auto;
        width: 95%;
    }

    .contact-modal-content h2 {
        font-size: 28px;
    }

    .contact-modal-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contact-modal-close {
        font-size: 32px;
        top: 15px;
        right: 20px;
    }

    .contact-submit-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Legal Modal Styles (ÁSZF & Adatvédelem) */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.legal-modal-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(10, 14, 26, 0.98) 100%);
    margin: 3% auto;
    padding: 50px;
    border: 2px solid rgba(0, 255, 163, 0.3);
    border-radius: 30px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 255, 163, 0.3);
    animation: slideDown 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.legal-modal-close {
    color: #00ff9f;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    z-index: 1;
}

.legal-modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.legal-modal-content h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff9f 0%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    padding-right: 50px;
}

.legal-modal-body {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.legal-modal-body h3 {
    color: #00ff9f;
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 163, 0.2);
    padding-bottom: 10px;
}

.legal-modal-body p {
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-modal-body em {
    color: rgba(255, 255, 163, 0.9);
    font-style: italic;
}

.legal-modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-modal-body li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-modal-body strong {
    color: #00ff9f;
    font-weight: 700;
}

/* Footer link styles */
footer .footer-link {
    color: #00ff9f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

footer .footer-link:hover {
    color: #00b8ff;
    text-decoration: underline;
}

/* Custom scrollbar for legal modals */
.legal-modal-content::-webkit-scrollbar {
    width: 10px;
}

.legal-modal-content::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff9f 0%, #00b8ff 100%);
    border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00b8ff 0%, #00ff9f 100%);
}

/* Mobile responsive for legal modals */
@media (max-width: 768px) {
    .legal-modal-content {
        padding: 30px 20px;
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }

    .legal-modal-content h2 {
        font-size: 24px;
        padding-right: 40px;
    }

    .legal-modal-body h3 {
        font-size: 18px;
    }

    .legal-modal-body p {
        font-size: 14px;
    }

    .legal-modal-close {
        font-size: 32px;
        top: 15px;
        right: 20px;
    }

    footer .footer-link {
        display: inline-block;
        margin: 5px 3px;
    }
}

/* Social Proof Notification Bubble */
.social-proof-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 1px solid rgba(0, 255, 163, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 255, 163, 0.2), 0 0 20px rgba(0, 255, 163, 0.1);
    z-index: 9999;
    opacity: 0;
    transform: translateX(-100%) scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    max-width: 320px;
}

.social-proof-bubble.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    animation: bubble-pulse 2s ease-in-out infinite;
}

@keyframes bubble-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 255, 163, 0.2), 0 0 20px rgba(0, 255, 163, 0.1);
    }
    50% {
        box-shadow: 0 10px 50px rgba(0, 255, 163, 0.35), 0 0 30px rgba(0, 255, 163, 0.2);
    }
}

.bubble-icon {
    font-size: 32px;
    animation: bubble-bounce 1s ease-in-out infinite;
}

@keyframes bubble-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bubble-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bubble-name {
    font-weight: 700;
    color: #00ff9f;
    font-size: 15px;
}

.bubble-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.bubble-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.bubble-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.bubble-close:hover {
    color: #00ff9f;
}

@media (max-width: 480px) {
    .social-proof-bubble {
        left: 15px;
        right: 15px;
        bottom: 20px;
        max-width: none;
    }
}

/* Bookmaker Promo Popup */
.bookmaker-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    border: 2px solid rgba(0, 255, 163, 0.4);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 255, 163, 0.25), 0 0 30px rgba(0, 255, 163, 0.15);
    z-index: 9998;
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    max-width: 300px;
    overflow: hidden;
}

.bookmaker-popup.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    animation: bookmaker-glow 2s ease-in-out infinite;
}

@keyframes bookmaker-glow {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(0, 255, 163, 0.25), 0 0 30px rgba(0, 255, 163, 0.15);
    }
    50% {
        box-shadow: 0 15px 60px rgba(0, 255, 163, 0.4), 0 0 40px rgba(0, 255, 163, 0.25);
    }
}

.bookmaker-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookmaker-popup-close:hover {
    color: #fff;
    background: rgba(255, 0, 0, 0.5);
}

.bookmaker-popup-content {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.bookmaker-popup-badge {
    background: linear-gradient(90deg, #00ff9f 0%, #00e4ff 100%);
    color: #0a0e1a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    text-align: center;
}

.bookmaker-popup-image {
    width: 100%;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.bookmaker-popup-info {
    padding: 15px 20px 10px;
    text-align: center;
}

.bookmaker-popup-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.bookmaker-popup-info p {
    font-size: 13px;
    color: #00ff9f;
    font-weight: 600;
}

.bookmaker-popup-cta {
    display: block;
    background: linear-gradient(90deg, #00ff9f 0%, #00e4ff 100%);
    color: #0a0e1a;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 14px 20px;
    margin: 10px 20px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.bookmaker-popup-content:hover .bookmaker-popup-cta {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 255, 163, 0.4);
}

@media (max-width: 480px) {
    .bookmaker-popup {
        right: 15px;
        left: 15px;
        bottom: 20px;
        max-width: none;
    }
}

/* About Button in Header */
.about-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(0, 255, 163, 0.2));
    border: 1px solid rgba(123, 47, 247, 0.4);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.5), rgba(0, 255, 163, 0.3));
    border-color: rgba(0, 255, 163, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(123, 47, 247, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, rgba(15, 20, 35, 1) 100%);
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(123, 47, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 163, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about h2 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.about h2 span {
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.9), rgba(15, 20, 35, 0.95));
    border: 1px solid rgba(0, 255, 163, 0.15);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: "🧪";
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 200px;
    opacity: 0.03;
    pointer-events: none;
}

.about-text p {
    color: #c5d0e6;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-intro {
    font-size: 22px !important;
    font-weight: 600;
    color: #fff !important;
    text-align: center !important;
    margin-bottom: 35px !important;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 255, 163, 0.2);
}

.about-highlight {
    font-size: 20px !important;
    font-weight: 700;
    color: #00ff9f !important;
    text-align: center !important;
    margin-top: 40px !important;
    margin-bottom: 30px !important;
    padding: 20px;
    background: rgba(0, 255, 163, 0.05);
    border-radius: 15px;
    border-left: 4px solid #00ff9f;
}

.about-closing {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 163, 0.2);
    text-align: center;
}

.about-closing p {
    text-align: center !important;
    margin-bottom: 10px !important;
}

.about-tagline {
    font-size: 28px !important;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 15px !important;
}

.about-final {
    font-size: 20px !important;
    font-weight: 600;
    background: linear-gradient(135deg, #00ff9f, #00e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 15px !important;
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .about-text {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 20px;
    }

    .about-intro {
        font-size: 18px !important;
        margin-bottom: 25px !important;
        padding-bottom: 20px;
    }

    .about-highlight {
        font-size: 17px !important;
        padding: 15px;
    }

    .about-tagline {
        font-size: 22px !important;
    }

    .about-final {
        font-size: 17px !important;
    }

    .about-closing {
        margin-top: 35px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .about h2 {
        font-size: 28px;
    }

    .about-text {
        padding: 25px 20px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-intro {
        font-size: 16px !important;
    }

    .about-highlight {
        font-size: 15px !important;
    }

    .about-tagline {
        font-size: 20px !important;
    }

    .about-final {
        font-size: 15px !important;
    }

    .about-button {
        font-size: 12px;
        padding: 8px 14px;
    }
}