/* ------------------------- Theme variables ------------------------- */ :root { --bg: #052e16; --panel: #0f172a; --accent: #00d1b2; --text: #999; --muted: #888; --border: #1e293b; --box-radius: 12px; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } /* ------------------------- Reset & layout safety ------------------------- */ * { box-sizing: border-box; } html, body { height: 100%; margin: 0; padding: 0; overflow-x: hidden; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased } a { color: inherit; text-decoration: none } img { display: block; max-width: 100% } .container { max-width: 1000px; margin: 0 auto; padding: 0 20px } /* ========================= Header (top bar) ========================= */ .site-header { width: 100%; background: var(--bg); position: relative; z-index: 40; padding: 10px; } .header-inner { display: flex; align-items: center; gap: 20px; height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 20px; background-color: #14532d; border-radius: 10px; } .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; } .logo img { height: 34px; width: auto; display: block; border-radius: 8px; } .brand-text { font-weight: 600; font-size: 24px; letter-spacing: .4px; color: white } /* centered pill nav */ .nav-pill { margin: 0 auto; display: flex; align-items: center; gap: 28px; background: #166534; padding: 12px 40px; border-radius: 999px; font-weight: 600; } .nav-pill a { font-size: 13.5px; padding: 8px 12px; border-radius: 6px; font-weight: 600; white-space: nowrap; color: white; } .nav-pill a:hover { background: rgba(255, 255, 255, 0.03) } .nav-pill a.active { font-weight: 700; color: #ccc; position: relative } .nav-pill a.active::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -10px; width: 28px; height: 3px; background: var(--accent); border-radius: 3px; } /* right action menu (contact/privacy/dmca) */ .header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto } .menu-pill { background: #166534; border: 1px solid #047857; padding: 10px 18px; border-radius: 30px; font-weight: 600; color: white; cursor: pointer; white-space: nowrap; margin-left: -60px; } .menu-pill:hover { background: rgba(255, 255, 255, 0.03) } /* simple dropdown for header actions */ .dropdown { position: relative; } .dropdown-menu { position: absolute; right: 0; top: calc(100% + 12px); background: #166534; border: 1px solid #047857; border-radius: 10px; padding: 8px; min-width: 180px; display: none; margin-top: 15px; } .dropdown-menu a { display: block; padding: 8px 12px; color: white; border-radius: 8px; } .dropdown-menu a:hover { background: #047857; } /* hamburger for mobile */ .hamburger { display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border); background: transparent; align-items: center; justify-content: center; cursor: pointer; margin-left: 8px; } .hamburger .bar { width: 18px; height: 2px; background: var(--text); display: block; margin: 3px 0 } @media (max-width:880px) { .nav-pill { display: none } .menu-pill { display: none } .hamburger { display: flex; margin-left: auto } } /* ========================= Intro (Sportsurge v3 + tagline) ========================= */ .intro { text-align: center; padding: 60px 12px 18px; max-width: 1200px; margin: 0 auto; } .intro h1 { font-size: 40px; margin: 0; color: white; font-weight:600; } .intro h2 { font-size: 20px; margin: 8px 0; color: white; font-weight: 600; text-align: center; } .intro p { color: white; max-width: 760px; margin: 0 auto 24px; font-size: 15px; font-weight: 300; text-align: center; } /* ========================= Category grid (boxes) ========================= */ .categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; /* reduced space between boxes */ max-width: 1200px; margin: 40px auto; padding: 0 15px 40px; } .cat-box { background-color: #14532d; border-radius: 8px; padding: 25px 14px; /* ⬅ smaller padding */ text-align: center; transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; min-height: 120px; /* ⬅ reduced height */ display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; } .cat-box img { width: 80px; /* ⬅ smaller icon */ height: 80px; object-fit: contain; margin-bottom: 8px; } .cat-box span { font-weight: 600; color: #ccc; font-size: 0.9rem; /* ⬅ slightly smaller text */ } .cat-box:hover { transform: translateY(-5px) scale(1.05); background: #166534; } /* Responsive layout */ @media (max-width: 1000px) { .categories { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 700px) { .categories { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 480px) { .categories { grid-template-columns: 1fr; } } /* ========================= "Why Sportsurge is the best?" feature blocks ========================= */ .section-title { max-width: 1200px; margin: 10px auto 24px; padding: 0 20px; text-align: center; margin-top: -30px; } .section-title h2 { font-size: 32px; color: white; margin: 6px 0; font-weight: 600; text-align: center; } .section-title p { color: white; max-width: 600px; margin: 0 auto 18px } .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto 60px; padding: 0 20px; } .feature-box { background-color: #14532d;; border-radius: 12px; padding: 26px; transition: transform .18s ease, background .18s; } .feature-box:hover { background-color: #166534;; } .feature-box h3 { color: white; margin: 0 0 10px; font-size: 18px; font-weight: 600; } .feature-box p { color: white; line-height: 1.6; font-size: 14px; margin: 0 } /* ========================= News section (cards) ========================= */ .news-section { max-width: 1670px; margin: 30px auto; padding: 30px 20px; background: transparent } .news-title { text-align: center; color: white; margin-bottom: 14px; font-size: 26px } .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; align-items: start; } .news-card { background: #14532d; border-radius: 12px; overflow: hidden; transition: transform .18s ease; width: 100%; max-width: 500px; } .news-card:hover { transform: translateY(-6px) } .news-card img { width: 100%; height: 150px; object-fit: cover; display: block } .news-body { padding: 16px } .news-body h3 { margin: 0 0 10px; color: white; font-size: 17px } .news-body p { margin: 0; color: white; font-size: 14px; line-height: 1.6 } /* ========================= FAQ section (logo left, FAQ right on wide screens) ========================= */ /* accordion */ .accordion-item { border-radius: 10px; background: transparent; margin-bottom: 12px; border: 1px solid rgba(255, 255, 255, 0.02); overflow: hidden } .accordion-toggle { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; cursor: pointer; background: transparent } .accordion-toggle .q { font-weight: 600; color: #bbb } .accordion-toggle .arrow { width: 18px; height: 18px; display: inline-block; transition: transform .25s ease; color: var(--muted); opacity: 0.95 } .accordion-content { max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .18s ease; padding: 0 14px } .accordion-content p { margin: 12px 0; color: var(--muted); line-height: 1.6 } .accordion-item.open .accordion-content { padding: 12px 14px 18px; max-height: 240px } .accordion-item.open .arrow { transform: rotate(180deg) } /* small screens: stack faq logo and content */ @media (max-width:880px) { .header-inner { height: 64px } .intro { padding: 36px 12px 12px } .faq-grid { grid-template-columns: 1fr; gap: 20px } .faq-logo { order: 1 } .faq-card { order: 2 } .categories { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 20px auto; padding: 0 12px 40px } .cat-box { min-height: 140px; padding: 22px 10px } .hamburger { display: flex } } /* remove site bottom scroll line / body overscroll */ html, body { overscroll-behavior-y: none } /* subtle page padding bottom so no ugly overlap at bottom on mobile */ .page-bottom-spacer { height: 34px } #watch-live { display: inline-block; background-color: #d20d28; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: bold; font-size: 1rem; transition: background 0.3s, transform 0.2s; margin-top: 10px; } #watch-live:hover { background-color: #b10b20; transform: scale(1.05); } .container1 { max-width: 1270px; margin: 50px auto; padding: 20px; transform: translateX(40px); margin-top: -60px; } /* Section Titles */ .section-title1 { text-align: center; font-size: 32px; font-weight: 600; color: white; margin-bottom: 40px; letter-spacing: 1px; margin-left: -60px; } /* Feature Section */ .feature { display: flex; flex-wrap: wrap; gap: 20px; justify-content: start; } .feature-card { background-color: #14532d; border-radius: 10px; padding: 25px; width: 370px; transition: transform 0.3s, box-shadow 0.3s; } .feature-card:hover { background-color: #166534; } .feature-card h3 { color: white; margin: 0; } .feature-card p { color: white; margin-top: 10px; line-height: 1.6; } /* Divider */ .divider { margin: 60px 0; border: 0; border-top: 5px solid #14532d; ; } /* Section Titles */ .section-title2 { text-align: center; font-size: 28px; font-weight: 600; color: white; margin-top: -30px; letter-spacing: 1px; margin-left: -60px; } /* Offers Section */ .offers { display: flex; flex-wrap: wrap; gap: 20px; justify-content: start; color: white; } .offer-card { background-color: #14532d; border-radius: 10px; padding: 20px; width: 280px; text-align: center; transition: background 0.3s, transform 0.3s; } .offer-card:hover { background-color: #166534; } .offer-card h4 { color: white; margin: 0; } .offer-card p { color: white; margin-top: 10px; font-weight: 500; } .offer-card:hover h4, .offer-card:hover p { color: white; } /* Responsive Design */ @media (max-width: 768px) { .feature-card, .offer-card { width: 100%; } } @media (max-width: 768px) { .container1 { max-width: 100%; margin: 20px auto; padding: 15px; transform: none; } .section-title1, .section-title2 { text-align: center; font-size: 24px; font-weight: 600; color: white; margin: 20px 0; letter-spacing: 0.5px; margin-left: 0; } .feature { flex-direction: column; gap: 15px; align-items: center; } .feature-card { width: 100%; padding: 20px; border-radius: 12px; text-align: center; } .feature-card h3 { font-size: 20px; } .feature-card p { font-size: 15px; line-height: 1.5; } .divider { margin: 40px auto; width: 80%; border-top: 3px solid #14532d; } .offers { flex-direction: column; gap: 15px; align-items: center; } .offer-card { width: 100%; padding: 18px; border-radius: 12px; text-align: center; } .offer-card h4 { font-size: 18px; } .offer-card p { font-size: 15px; line-height: 1.4; } } .main-wrapper { display: flex; justify-content: space-between; align-items: center; max-width: 1700px; width: 100%; padding: 60px 80px; margin: 60px auto; background-color: #14532d; border-radius: 6px; transform: translateY(20px); } .logo-block { flex: 1; text-align: center; } .sportsurge-logo { font-family: 'Arial Black', sans-serif; font-style: italic; font-size: 58px; font-weight: 900; color: #ffffff; letter-spacing: 2px; display: inline-block; -webkit-text-stroke: 1px #ffffff; text-transform: uppercase; } .sportsurge-logo span:nth-child(2) { color: #ff2d2d; } .sportsurge-sub { font-size: 16px; text-align: center; color: #ff2d2d; font-weight: 600; margin-top: 5px; text-transform: lowercase; letter-spacing: 1px; font-family: 'Arial', sans-serif; } .faq-container { flex: 1; max-width: 800px; background-color: #166534; border-radius: 15px; padding: 30px 40px; } .faq-header { margin-bottom: 25px; } .faq-tag { font-size: 14px; color: white; background: #15803d; padding: 6px 14px; border-radius: 12px; font-weight: 600; } .faq-header h1 { font-size: 36px; color: #fff; margin-top: 10px; font-weight: 700; } .faq-item { background: #15803d; border-radius: 12px; margin-bottom: 15px; padding: 18px 22px; cursor: pointer; transition: all 0.3s ease; color: white; } .faq-item:hover { background: #16a34a; } .faq-question { display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 500; } .faq-answer { max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; color: white; line-height: 1.6; font-size: 15px; border-top: 1px solid #16a34a; padding-top: 0; transition: all 0.4s ease; } .faq-item.active .faq-answer { max-height: 300px; opacity: 1; margin-top: 12px; padding-top: 10px; } .arrow { transition: transform 0.3s ease; } .faq-item.active .arrow { transform: rotate(180deg); } @media (max-width: 950px) { body { height: auto; padding: 40px 20px; } .main-wrapper { flex-direction: column; text-align: center; } .faq-container { margin-top: 40px; max-width: 100%; } } @media (max-width: 768px) { .main-wrapper { flex-direction: column; align-items: center; justify-content: center; background-color: #14532d; padding: 30px 20px; margin: 20px auto; border-radius: 10px; transform: none; width: 95%; } .logo-block { text-align: center; margin-bottom: 25px; } .sportsurge-logo { font-size: 36px; letter-spacing: 1px; -webkit-text-stroke: 0.5px #fff; } .sportsurge-sub { font-size: 14px; margin-top: 4px; } .faq-container { width: 100%; max-width: 100%; background-color: #166534; padding: 25px 20px; border-radius: 12px; text-align: left; } .faq-header { text-align: center; margin-bottom: 20px; } .faq-tag { font-size: 12px; padding: 5px 12px; border-radius: 10px; } .faq-header h1 { font-size: 24px; margin-top: 8px; line-height: 1.3; } .faq-item { padding: 15px 18px; margin-bottom: 12px; border-radius: 10px; } .faq-question { font-size: 15px; line-height: 1.4; } .faq-answer { font-size: 14px; line-height: 1.5; } .arrow { width: 18px; height: 18px; } .faq-item.active .faq-answer { max-height: 400px; margin-top: 10px; padding-top: 8px; } } #matches { max-width: 900px; margin: 0 auto; } /* Simple match row */ .match-card { display: flex; justify-content: space-between; align-items: center; background: #14532d; padding: 15px 12px; border-radius: 8px; margin-bottom: 5px; cursor: pointer; transition: background 0.2s; font-size: 14px; font-weight: 600; } .match-card:hover { background: #166534; } .league { flex: 1; text-align: left; color: white; font-weight: 600; } .teams { flex: 2; text-align: start; color: white; } .time { text-align: center; /* center text */ font-weight: 600; background-color: #16a34a; /* green background */ color: #fff; /* white text */ padding: 4px 10px; /* some space around text */ border-radius: 6px; display: inline-block; /* make background only wrap content */ } #loader { margin: 60px auto; width: 80px; height: 30px; text-align: center; } .loader-bubble { display: inline-block; width: 15px; height: 15px; margin: 0 5px; background-color: #4ade80; border-radius: 50%; animation: bubbleBounce 1.2s infinite ease-in-out; } .loader-bubble:nth-child(1) { animation-delay: 0s; } .loader-bubble:nth-child(2) { animation-delay: 0.2s; } .loader-bubble:nth-child(3) { animation-delay: 0.4s; } @keyframes bubbleBounce { 0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } } #error-message { max-width: 700px; margin: 40px auto; background: #b91c1c; color: #fff; padding: 12px 20px; border-radius: 6px; font-weight: 600; text-align: center; } .all-article { text-align: center; /* Center the text */ max-width: 930px; /* Limit width for readability */ margin: 40px auto; /* Center in page with top/bottom spacing */ padding: 0 15px; /* Small padding for mobile */ line-height: 1.6; /* Better readability */ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #eee; /* Light text for dark background pages */ } .all-article h1,h2,h3 { font-size: 32px; margin-bottom: 20px; font-weight: 600; text-align: start; } .all-article h1 { font-size: 42px; margin-bottom: 20px; font-weight: 700; text-align: start; } .all-article p { font-size: 16px; font-weight: 400; text-align: start; } .all-article ul { font-size: 16px; font-weight: 400; text-align: start; } .buff-footer { width: 100%; background: #0b1f0b; color: #d1e7d1; text-align: center; padding: 50px 20px; font-family: "Segoe UI", Arial, sans-serif; border-top: 2px solid #1a4d1a; } .buff-footer h2 { font-size: 26px; color: #fff; margin-bottom: 8px; letter-spacing: 1px; } .buff-footer .tagline { font-size: 14px; color: white; margin-bottom: 25px; } .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-bottom: 25px; } .footer-links a { color: #d1e7d1; text-decoration: none; font-size: 14px; transition: 0.3s; } .footer-links a:hover { color: #4ade80; } .footer-divider { width: 80px; height: 2px; background: #4ade80; margin: 0 auto 25px; border-radius: 1px; } .buff-footer p { margin: 0; } .copyright { font-size: 13px; color: white; margin-bottom: 10px; } .disclaimer { font-size: 12px; color: white; max-width: 700px; margin: 0 auto; line-height: 1.6; padding: 0 10px; } /* ✅ Responsive adjustments for mobile */ @media (max-width: 600px) { .buff-footer { padding: 40px 15px; } .buff-footer h2 { font-size: 22px; } .footer-links { flex-direction: column; gap: 12px; } .footer-links a { font-size: 15px; } .disclaimer { font-size: 11.5px; } } @media (max-width: 768px) { .buff-footer { padding: 35px 18px; text-align: center; background: #0b1f0b; border-top: 2px solid #1a4d1a; } .buff-footer h2 { font-size: 24px; margin-bottom: 10px; color: #ffffff; letter-spacing: 0.5px; } .buff-footer .tagline { font-size: 13px; line-height: 1.5; color: #e2e8e2; margin-bottom: 20px; padding: 0 10px; } .footer-divider { width: 60px; height: 2px; background: #4ade80; margin: 15px auto 20px; } .footer-links { flex-direction: column; align-items: center; gap: 14px; margin-bottom: 25px; } .footer-links a { font-size: 15px; color: #cdeccc; font-weight: 500; transition: color 0.3s ease; } .footer-links a:hover { color: #4ade80; } .copyright { font-size: 12.5px; margin-bottom: 10px; color: #ffffff; } .disclaimer { font-size: 12px; color: #e4f0e4; line-height: 1.7; padding: 0 12px; max-width: 95%; margin: 0 auto; } } .intro-all{ max-width: 850px; margin: 0px auto 20px; padding: 30px 20px; color: #e5e5e5; text-align: center; } .intro-all h1 { font-size: 44px; color: #ffffff; margin-bottom: 12px; letter-spacing: 1px; font-weight: 700; text-align: center; } .intro-all { font-size: 16px; line-height: 1.8; color: #cccccc; max-width: 950px; margin: 0 auto; text-align: start; } .intro-all highlight { color: #4ade80; font-weight: 600; } /* ✅ Responsive for mobile */ @media (max-width: 600px) { .intro-soccer h1 { font-size: 32px; } .intro-soccer p { font-size: 15px; } } /* Wrapper centers the search box */ .search-wrapper { text-align: center; margin-bottom: 25px; } /* Container for input and icon */ .search-container { position: relative; display: inline-block; width: 900px; max-width: 90%; } /* Search Icon */ .search-icon { position: absolute; top: 50%; left: 14px; transform: translateY(-50%); width: 22px; height: 22px; color: #bbf7d0; /* Soft green glow */ transition: color 0.3s ease; } /* Input Field */ .search-container input { width: 100%; padding: 12px 14px 12px 45px; border-radius: 10px; background: linear-gradient(145deg, #14532d, #0f3e23); border: 1.5px solid #166534; font-size: 17px; color: #f9fafb; box-sizing: border-box; outline: none; font-weight: 400; letter-spacing: 0.5px; transition: all 0.3s ease; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;} /* Placeholder text color */ .search-container input::placeholder { color: #d1fae5cc; /* soft light green */ } /* Hover Effect */ .search-container input:hover { background: linear-gradient(145deg, #166534, #0f3e23); border-color: #22c55e; } /* Focus Effect */ .search-container input:focus { background: linear-gradient(145deg, #166534, #0f3e23); border-color: #22c55e; } .search-container input:focus + .search-icon { color: #22c55e; /* Brighter icon on focus */ } /* Responsive for mobile */ @media (max-width: 600px) { .search-container { width: 100%; } .search-container input { font-size: 15px; padding: 10px 12px 10px 40px; } } .contact-header { text-align: center; margin-bottom: 20px; margin-top: 40px; } .contact-header h1 { font-size: 2.5rem; font-weight: 700; color: white; } .contact-box { max-width: 600px; margin: 0 auto; background-color: #14532d; border-radius: 10px; padding: 30px; color: white; } .form-control { background: #15803d; border: none; color: #fff; } .form-control:focus { background-color: #22c55e; color: #fff; border: #15803d; } .btn-send { background-color: #22c55e; color: #000; font-weight: 600; width: 100%; padding: 12px; border: none; border-radius: 6px; transition: 0.3s; } .btn-send:hover { background-color: #16a34a; color: #fff; } .direct-contact { text-align: center; margin-top: 25px; font-size: 15px; color: #b0cdb8; } .direct-contact a { color: #22c55e; text-decoration: none; font-weight: 600; } .direct-contact a:hover { text-decoration: underline; } .admin-note { margin-top: 18px; text-align: center; font-size: 14px; color: #9ee6b5; font-style: italic; }