/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #38b6ff;
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    border-radius: 8px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #38b6ff;
}

.cta-button {
    background: linear-gradient(135deg, #38b6ff, #2e97eb);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #38b6ff 0%, #2e97eb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

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

.app-button {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-button i { font-size: 2rem; margin-right: 0.75rem; }
.button-text { display: flex; flex-direction: column; }
.button-text .small { font-size: 0.75rem; opacity: 0.8; }
.button-text .large { font-size: 1rem; font-weight: 600; }

.hero-image { display: flex; justify-content: center; }
.phone-mockup { width: 300px; height: 620px; background: linear-gradient(145deg,#0f0f10,#232427); border-radius: 46px; padding: 14px; box-shadow: 0 28px 56px rgba(0,0,0,.28); position: relative; border: 2px solid #1b1b1d; }
.phone-screen { width: 100%; height: 100%; background: #000; border-radius: 30px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.app-preview { width: 80%; height: 80%; background: rgba(255,255,255,0.1); border-radius: 15px; }

/* Hero phone details */
.phone-mockup::before{ content:""; position:absolute; top:12px; left:50%; transform:translateX(-50%); width:44%; height:26px; background:#0b0b0c; border-bottom-left-radius:18px; border-bottom-right-radius:18px; box-shadow:0 2px 4px rgba(0,0,0,.35); z-index:2; }
.hero-screenshot{ width:100%; height:100%; object-fit: contain; background:#000; border-radius:24px; display:block; }

/* Section Styles */
.section-title { text-align:center; font-size:2.5rem; font-weight:700; margin-bottom:3rem; color:#1e293b; }

/* How It Works */
.how-it-works { padding: 6rem 0; background: #f8fafc; }
.steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
.step { text-align:center; padding:2rem; background:white; border-radius:20px; box-shadow:0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.step:hover { transform: translateY(-5px); }
.step-icon { width: 80px; height: 80px; background: linear-gradient(90deg, #38b6ff, #2e97eb); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; }
.step-icon i { font-size:2rem; color:white; }
.step h3 { font-size:1.5rem; font-weight:600; margin-bottom:1rem; color:#1e293b; }
.step p { color:#64748b; font-size:1.1rem; }

/* Sports Categories */
.sports-categories { padding:6rem 0; background:white; }
.sports-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.sport-card { text-align:center; padding:2rem; background:#f8fafc; border-radius:20px; transition: all 0.3s ease; cursor:pointer; }
.sport-card:hover { background: linear-gradient(90deg, #38b6ff, #2e97eb); transform: translateY(-5px); color:white; }
.sport-icon { font-size:3rem; margin-bottom:1rem; transition: transform 0.3s ease; }
.sport-card h3 { font-size:1.2rem; font-weight:600; }

/* Features */
.features { padding:6rem 0; background:#f8fafc; }
.features-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:2rem; }
.feature-card { background:white; padding:2.5rem; border-radius:20px; text-align:center; box-shadow:0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { width:80px; height:80px; background: linear-gradient(90deg, #38b6ff, #2e97eb); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; }
.feature-icon i { font-size:2rem; color:white; }
.feature-card h3 { font-size:1.3rem; font-weight:600; margin-bottom:1rem; color:#1e293b; }
.feature-card p { color:#64748b; line-height:1.6; }

/* CTA Section */
.cta-section { padding:6rem 0; background: linear-gradient(90deg, #38b6ff, #2e97eb); text-align:center; color:white; }
.cta-section h2 { font-size:2.5rem; font-weight:700; margin-bottom:1rem; }
.cta-section p { font-size:1.2rem; margin-bottom:2rem; opacity:0.9; }

/* Removed modal styles (no longer used) */

/* Footer */
.footer { background:#1e293b; color:white; padding:4rem 0 2rem; }
.footer-content { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:2rem; margin-bottom:2rem; }
.footer-logo { display:flex; align-items:center; font-size:1.5rem; font-weight:700; margin-bottom:1rem; }
.footer-logo .logo-image { width:35px; height:35px; margin-right:0.5rem; border-radius:6px; object-fit:cover; }
.footer-section h4 { font-size:1.2rem; font-weight:600; margin-bottom:1rem; color:#e2e8f0; }
.footer-section ul { list-style:none; }
.footer-section ul li { margin-bottom:0.5rem; }
.footer-section ul li a { color:#cbd5e1; text-decoration:none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color:#38b6ff; }
.social-links { display:flex; gap:1rem; }
.social-links a { width:40px; height:40px; background:#374151; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; text-decoration:none; transition: all 0.3s ease; }
.social-links a:hover { background:#38b6ff; transform: translateY(-2px); }
.footer-bottom { text-align:center; padding-top:2rem; border-top:1px solid #374151; color:#9ca3af; }

/* Screens grid */
.screens { padding: 6rem 0; background: #fff; }
.screens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; justify-items: center; }
.screen-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.device { width: 340px; height: 700px; background: linear-gradient(145deg,#0f0f10,#232427); border-radius:46px; padding:14px; box-shadow: 0 24px 48px rgba(0,0,0,.2), 0 6px 18px rgba(0,0,0,.2) inset; overflow:hidden; position:relative; border:2px solid #1b1b1d; }
.device img { width:100%; height:100%; object-fit: contain; background:#000; border-radius:24px; display:block; }
.screen-item figcaption { font-weight:600; color:#1e293b; text-align:center; }

/* iPhone details */
.device::before{ /* notch */
	content:""; position:absolute; top:10px; left:50%; transform:translateX(-50%);
	width: 42%; height: 26px; background:#0b0b0c; border-bottom-left-radius:18px; border-bottom-right-radius:18px;
	box-shadow: 0 2px 4px rgba(0,0,0,.35);
}
.device::after{ /* side button (power) */
	content:""; position:absolute; right:-2px; top:140px; width:4px; height:90px; background:#1b1b1d; border-radius:2px;
}
.device .btn-volume{ position:absolute; left:-2px; top:120px; width:4px; height:60px; background:#1b1b1d; border-radius:2px; }
.device .btn-silent{ position:absolute; left:-2px; top:90px; width:4px; height:22px; background:#1b1b1d; border-radius:2px; }

/* notch details */
.device .notch-speaker{ position:absolute; top:15px; left:50%; transform:translateX(-50%); width:70px; height:6px; background:#1f2022; border-radius:3px; }
.device .notch-camera{ position:absolute; top:14px; left:calc(50% + 90px); width:10px; height:10px; background:#0a0a0b; border-radius:50%; box-shadow: inset 0 0 0 2px #0d0d0e, 0 0 6px rgba(0,0,0,.6); }

@media (max-width: 1024px){
	.screens-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
	.screens-grid { grid-template-columns: 1fr; }
	.device{ width:280px; height:560px; padding:10px; }
}
@media (max-width: 420px){
	.device{ width:220px; height:440px; padding:8px; }
} 

/* Contact Modal */
.contact-modal{ position:fixed; inset:0; background:rgba(0,0,0,.5); display:flex; align-items:center; justify-content:center; padding:1rem; z-index:1000; opacity:0; visibility:hidden; pointer-events:none; transition: opacity .28s ease, visibility .28s ease; backdrop-filter: blur(2px); }
.contact-modal.open{ opacity:1; visibility:visible; pointer-events:auto; }
.contact-modal-content{ background:#fff; color:#0f172a; width:min(520px, 92vw); border-radius:16px; padding:2rem; box-shadow:0 24px 64px rgba(0,0,0,.25); text-align:center; position:relative; transform: translateY(8px) scale(.98); transition: transform .28s ease, box-shadow .28s ease; }
.contact-modal.open .contact-modal-content{ transform: translateY(0) scale(1); box-shadow:0 30px 72px rgba(0,0,0,.28); }
.contact-modal-close{ position:absolute; top:10px; right:12px; background:transparent; border:none; font-size:1.75rem; line-height:1; cursor:pointer; color:#475569; }
.contact-header i{ font-size:2rem; color:#2e97eb; background:#e6f4ff; width:56px; height:56px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; margin-bottom:0.5rem; }
.contact-header h3{ margin:0.25rem 0; font-size:1.5rem; }
.contact-header p{ color:#64748b; }
.contact-body{ margin-top:1rem; }
.contact-email{ display:inline-block; font-weight:700; color:#0f172a; text-decoration:none; border:2px dashed #cbd5e1; padding:0.5rem 0.75rem; border-radius:10px; }
.contact-actions{ display:flex; gap:0.75rem; justify-content:center; margin-top:1rem; flex-wrap:wrap; }
.contact-actions .primary{ background:linear-gradient(90deg, #38b6ff, #2e97eb); color:#fff; text-decoration:none; padding:.75rem 1rem; border-radius:10px; font-weight:600; }
.contact-actions .secondary{ background:#f1f5f9; color:#0f172a; padding:.75rem 1rem; border-radius:10px; font-weight:600; border:none; cursor:pointer; }
.copy-toast{ margin-top:0.75rem; font-size:0.9rem; color:#16a34a; opacity:0; transition: opacity .25s ease; }
.copy-toast.show{ opacity:1; }