/* Base Styles & Variables */
:root {
    --bg-main: #f5f5f7;
    --bg-secondary: #eaeaec;
    --text-primary: #1d1d1f;
    --text-secondary: #515154;
    --accent-red: #ff3333;
    --accent-red-hover: #ff4d4d;
    --glass-bg: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.08);
    --gold: #ffd700;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-red);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.red-text {
    color: var(--accent-red);
}

.text-center {
    text-align: center;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 51, 0.3);
}

/* Button Styles */
.btn-primary {
    background-color: var(--accent-red);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--text-primary);
    font-weight: 600;
    display: inline-block;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-red);
    color: var(--accent-red) !important;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease;
    padding: 1.5rem 0;
}

#navbar.scrolled {
    background: rgba(245, 245, 247, 0.9);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(245,245,247,0.3) 0%, rgba(245,245,247,1) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Section Common */
section {
    padding: 6rem 0;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-title p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,51,51,0.1), transparent);
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Platforms Section */
.platforms-section {
    background-color: var(--bg-secondary);
}

.platform-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.platform-card:last-child {
    margin-bottom: 0;
}

.platform-image {
    border-radius: 16px;
    overflow-y: auto;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 51, 51, 0.5) transparent;
}

.platform-image::-webkit-scrollbar {
    width: 6px;
}

.platform-image::-webkit-scrollbar-track {
    background: transparent;
}

.platform-image::-webkit-scrollbar-thumb {
    background-color: rgba(255, 51, 51, 0.5);
    border-radius: 20px;
}

.platform-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.platform-image:hover img {
    filter: brightness(1.1);
}

.platform-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge {
    background-color: var(--accent-red);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.platform-link {
    color: var(--accent-red);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.platform-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-list i {
    color: var(--accent-red);
    margin-top: 0.3rem;
}

.platform-mini-stats {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.mini-stat span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
}

.mini-stat small {
    display: block;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* Audience Section */
.audience-section {
    background: var(--bg-main);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 4rem 2rem;
}

.stat-box i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.glow-red:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Advertising Section */
.ad-section {
    background-color: var(--bg-secondary);
}

.ad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ad-card {
    text-align: center;
    padding: 2rem;
}

.ad-preview {
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--text-secondary);
}

.glow-premium:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.ad-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ad-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    background-color: #050508;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-brand p {
    color: #a0a0b0;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-contact p {
    color: #a0a0b0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact a {
    color: #a0a0b0;
}
.footer-contact a:hover {
    color: var(--accent-red);
}

.footer .glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #a0a0b0;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width: 900px) {
    .about-grid, .platform-card, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .flip-layout .platform-image {
        order: -1;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide Google Translate Banner and Annoying Popups */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
iframe[src*="translate.googleapis.com"] {
    display: none !important;
    visibility: hidden !important;
}
body {
    top: 0px !important;
    position: static !important;
}
html {
    height: auto !important;
}
#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* Force colors and backgrounds when generating PDF */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    body {
        background-color: var(--bg-color) !important;
    }
    .hero {
        page-break-after: always;
    }
    section {
        page-break-inside: avoid;
    }
}
