:root {
            --primary: #0f4c81;
            --secondary: #ff6b35;
            --accent: #3ccf4e;
            --light: #f9f9f9;
            --dark: #1e293b;
            --shadow: 0 5px 15px rgba(0,0,0,0.12);
            --border-radius: 12px;
            --transition: all 0.35s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: var(--dark);
            line-height: 1.85;
            font-size: 16px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #1a73e8);
            color: white;
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: var(--transition);
        }
        header:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: var(--secondary);
            font-style: italic;
        }
        .logo .edition {
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: capitalize;
            background-color: rgba(255,255,255,0.2);
            padding: 3px 10px;
            border-radius: 20px;
        }
        nav {
            display: flex;
            align-items: center;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            margin-right: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.08rem;
            padding: 5px 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 11px 24px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 1.05rem;
            text-align: center;
        }
        .btn-download {
            background-color: var(--secondary);
            color: white;
            margin-right: 12px;
            box-shadow: 0 4px 10px rgba(255,107,53,0.3);
        }
        .btn-download:hover {
            background-color: #e85a2a;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255,107,53,0.4);
        }
        .btn-login {
            background-color: white;
            color: var(--primary);
            box-shadow: 0 4px 10px rgba(255,255,255,0.2);
        }
        .btn-login:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255,255,255,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .hero {
            background: url('https://via.placeholder.com/1920x600?text=Wave+Rider+Indian+Edition+Surfing+Adventure') center/cover no-repeat;
            padding: 110px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15,76,129,0.75), rgba(26,115,232,0.7));
            z-index: 1;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(to top, #f0f4f8, transparent);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 950px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 0 3px 10px rgba(0,0,0,0.3);
            line-height: 1.25;
        }
        .hero h1 span {
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .btn-group {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }
        .hero .btn {
            padding: 14px 30px;
            font-size: 1.15rem;
        }
        .hero .btn-download {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero .btn-download svg {
            width: 22px;
            height: 22px;
        }
        main {
            padding: 80px 0;
        }
        .section {
            margin-bottom: 100px;
            position: relative;
        }
        .section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 25%;
            width: 50%;
            height: 1px;
            background-color: rgba(15,76,129,0.1);
        }
        .section:last-child::after {
            display: none;
        }
        .section-title {
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 40px;
            padding-bottom: 12px;
            border-bottom: 4px solid var(--secondary);
            display: inline-block;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 30%;
            height: 4px;
            background-color: var(--accent);
        }
        .content-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
            transition: var(--transition);
            border-top: 5px solid var(--primary);
        }
        .content-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .content-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .content-card h3 svg {
            width: 28px;
            height: 28px;
            color: var(--secondary);
        }
        .content-card h4 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 30px 0 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .content-card h4::before {
            content: '•';
            color: var(--secondary);
            font-size: 1.8rem;
        }
        .content-card p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #334155;
        }
        .content-card p strong {
            color: var(--primary);
            font-weight: 600;
        }
        .content-card ul {
            margin-left: 30px;
            margin-bottom: 30px;
        }
        .content-card li {
            margin-bottom: 15px;
            font-size: 1.08rem;
            color: #334155;
            position: relative;
            padding-left: 15px;
        }
        .content-card li::before {
            content: '✓';
            position: absolute;
            left: -20px;
            color: var(--accent);
            font-weight: bold;
        }
        .content-card ol {
            margin-left: 30px;
            margin-bottom: 30px;
        }
        .content-card ol li {
            margin-bottom: 15px;
            font-size: 1.08rem;
            color: #334155;
            padding-left: 10px;
        }
        .content-card ol li::before {
            content: none;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        .image-container:hover img {
            transform: scale(1.02);
        }
        .image-container p {
            background-color: var(--light);
            padding: 15px;
            margin: 0;
            font-style: italic;
            color: #64748b;
            font-size: 1rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        .highlight {
            background-color: rgba(255,107,53,0.08);
            border-left: 5px solid var(--secondary);
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            position: relative;
        }
        .highlight::before {
            content: '💡';
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
        }
        .highlight strong {
            color: var(--primary);
            font-size: 1.15rem;
            display: block;
            margin-bottom: 8px;
        }
        .highlight p {
            margin-bottom: 0;
            color: #2d3748;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: rgba(15,76,129,0.05);
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(15,76,129,0.1);
        }
        .stat-card:hover {
            background-color: rgba(15,76,129,0.08);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #475569;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 35px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 5px;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 15px 28px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            font-weight: 600;
            color: #64748b;
            transition: var(--transition);
            white-space: nowrap;
            font-size: 1.05rem;
            border-bottom: 3px solid transparent;
        }
        .tab:hover {
            color: var(--primary);
            background-color: rgba(15,76,129,0.03);
        }
        .tab.active {
            background-color: rgba(15,76,129,0.05);
            color: var(--primary);
            border-bottom: 3px solid var(--secondary);
            border-radius: 8px 8px 0 0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .feature-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            border-bottom: 4px solid var(--accent);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .feature-card:hover .feature-icon {
            color: var(--secondary);
            transform: scale(1.1);
        }
        .feature-card h3 {
            font-size: 1.45rem;
            color: var(--dark);
            margin-bottom: 15px;
            display: block;
        }
        .feature-card p {
            font-size: 1.02rem;
            color: #475569;
            margin-bottom: 0;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .testimonial-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 35px;
            transition: var(--transition);
            position: relative;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 25px;
            font-size: 4rem;
            color: rgba(15,76,129,0.1);
            font-family: Georgia, serif;
        }
        .testimonial-text {
            font-style: italic;
            color: #334155;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(15,76,129,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
        }
        .author-info h4 {
            font-size: 1.15rem;
            color: var(--dark);
            margin: 0 0 5px 0;
        }
        .author-info p {
            font-size: 0.95rem;
            color: #64748b;
            margin: 0;
        }
        .download-container {
            background: linear-gradient(135deg, var(--primary), #1a73e8);
            border-radius: var(--border-radius);
            padding: 60px;
            text-align: center;
            color: white;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(15,76,129,0.2);
        }
        .download-container h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: white;
        }
        .download-container p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: rgba(255,255,255,0.9);
        }
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .download-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 30px;
            border-radius: 30px;
            background-color: white;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(255,255,255,0.2);
        }
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,255,255,0.3);
            background-color: #f8f9fa;
        }
        .download-btn svg {
            width: 24px;
            height: 24px;
        }
        .download-note {
            margin-top: 30px;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--secondary);
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 15px;
        }
        .footer-col a {
            color: #b9c1cc;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.02rem;
            display: inline-block;
            padding: 3px 0;
        }
        .footer-col a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 25px;
        }
        .tag {
            background-color: #2d3748;
            padding: 9px 18px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
            padding-left: 18px;
        }
        .recommendation {
            background-color: rgba(255,107,53,0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-top: 25px;
            border-left: 4px solid var(--secondary);
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .recommendation h4::before {
            content: none;
        }
        .recommendation p {
            color: #e2e8f0;
            margin-bottom: 15px;
            font-size: 1.02rem;
        }
        .recommendation p:last-child {
            margin-bottom: 0;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #374151;
            font-size: 0.95rem;
            color: #9ca3af;
            line-height: 1.8;
        }
        .copyright-links {
            margin: 15px 0;
        }
        .copyright-links a {
            color: #9ca3af;
            text-decoration: none;
            margin: 0 12px;
            transition: var(--transition);
        }
        .copyright-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .content-card {
                padding: 35px;
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 25px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .hero {
                padding: 90px 0;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            main {
                padding: 60px 0;
            }
            .section {
                margin-bottom: 80px;
            }
            .features-grid {
                gap: 25px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                justify-content: space-between;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
                flex-direction: column;
            }
            nav.active {
                display: flex;
            }
            nav ul {
                flex-direction: column;
                gap: 20px;
                margin-right: 0;
                margin-bottom: 20px;
                width: 100%;
            }
            nav ul li {
                width: 100%;
            }
            nav a {
                display: block;
                width: 100%;
                padding: 10px 0;
            }
            .btn-group {
                display: flex;
                width: 100%;
                gap: 15px;
            }
            .btn {
                width: 50%;
                margin-right: 0;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 70px 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .content-card {
                padding: 30px 25px;
            }
            .content-card h3 {
                font-size: 1.6rem;
            }
            .download-container {
                padding: 40px 25px;
            }
            .download-container h3 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            .logo .edition {
                font-size: 0.9rem;
                padding: 2px 8px;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 1.9rem;
                line-height: 1.3;
            }
            .hero .btn-group {
                flex-direction: column;
                gap: 15px;
            }
            .hero .btn {
                width: 100%;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .content-card h3 {
                font-size: 1.4rem;
            }
            .content-card h4 {
                font-size: 1.25rem;
            }
            .tabs {
                flex-direction: column;
                border-bottom: none;
            }
            .tab {
                border-bottom: 1px solid #e2e8f0;
                border-radius: 0;
                text-align: left;
            }
            .tab.active {
                border-radius: 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .download-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .download-btn {
                width: 100%;
                justify-content: center;
            }
            .footer-content {
                gap: 30px;
            }
            .copyright-links a {
                display: block;
                margin: 8px 0;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }
        .loader {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            z-index: 99999;
            align-items: center;
            justify-content: center;
        }
        .loader.active {
            display: flex;
        }
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(15,76,129,0.1);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
