  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #fef7e8;
            font-family: 'Inter', 'Nunito', sans-serif;
            color: #2c1a0e;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        :root {
            --saffron: #c1662b;
            --saffron-dark: #9b4b1a;
            --saffron-light: #e6b17e;
            --bg-warm: #fffaf2;
            --card-white: #ffffff;
            --shadow-soft: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
            --radius-card: 28px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
        }

        /* Header */
        .hero {
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 2px solid rgba(193, 102, 43, 0.25);
            padding-bottom: 1.5rem;
        }
        .om-symbol {
            font-size: 3rem;
            font-weight: 600;
            color: var(--saffron);
            letter-spacing: 6px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #b55a2a, #7a3e18);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .subhead {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 0.8rem;
            font-weight: 500;
            color: #6b4a2c;
        }
        .subhead span i {
            color: var(--saffron);
            margin-right: 6px;
        }

        /* Tabs */
        .tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 2rem 0 1.8rem;
            border-bottom: 1px solid #f0e0cf;
            padding-bottom: 0.75rem;
        }
        .tab-btn {
            background: transparent;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 0.7rem 1.6rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #6b4a2c;
            font-family: inherit;
        }
        .tab-btn i {
            margin-right: 8px;
        }
        .tab-btn.active {
            background: var(--saffron);
            color: white;
            box-shadow: 0 8px 18px rgba(193, 102, 43, 0.3);
        }
        .tab-btn:hover:not(.active) {
            background: #f4e5d8;
            transform: translateY(-1px);
        }

        /* Panels */
        .panel {
            display: none;
            animation: fadeSlide 0.25s ease forwards;
        }
        .panel.active-panel {
            display: block;
        }
        @keyframes fadeSlide {
            from { opacity: 0; transform: translateY(8px);}
            to { opacity: 1; transform: translateY(0);}
        }

        /* Sanskrit Flow Card */
        .sanskrit-flow-card {
            background: var(--card-white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-soft);
            padding: 2rem;
            border-left: 6px solid var(--saffron);
        }
        .sanskrit-flow {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.8;
            color: #2c241a;
            font-family: 'Nunito', 'Inter', monospace;
            word-break: break-word;
            white-space: pre-wrap;
            letter-spacing: 0.3px;
        }

        /* Meaning & Guide Cards */
        .meaning-card {
            background: var(--card-white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-soft);
            padding: 1.6rem;
            margin-bottom: 1.5rem;
            border-left: 6px solid var(--saffron);
            transition: transform 0.2s;
        }
        .meaning-card:hover {
            transform: translateY(-2px);
        }
        .sanskrit-small {
            background: #fef5ea;
            padding: 12px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            font-family: 'Nunito', monospace;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #4a2a12;
            border-left: 3px solid var(--saffron);
        }
        .meaning-title {
            font-weight: 800;
            font-size: 0.9rem;
            color: #aa6f42;
            margin: 12px 0 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .meaning-title:first-of-type {
            margin-top: 0;
        }
        .hindi-text, .english-text {
            font-size: 1rem;
            line-height: 1.55;
            color: #2c241a;
        }
        .english-text {
            color: #2c3a2b;
            border-top: 1px solid #f0dbc8;
            padding-top: 10px;
            margin-top: 8px;
        }
        .chant-guide-compact {
            background: #fcf5eb;
            margin-top: 10px;
            padding: 12px 16px;
            border-radius: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .guide-item {
            flex: 1;
            min-width: 200px;
        }
        .guide-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--saffron-dark);
            display: inline-block;
            margin-bottom: 6px;
        }
        .chant-text {
            font-size: 0.95rem;
            font-weight: 500;
        }

        .info-banner {
            background: #fff0e0;
            border-radius: 32px;
            padding: 0.8rem 1.4rem;
            margin-bottom: 1.8rem;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Enhanced Footer */
        .footer {
            margin-top: 3rem;
            background: #2c1a0e;
            color: #f0dbc8;
            border-radius: 40px 40px 28px 28px;
            overflow: hidden;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            padding: 2rem 2rem 1.5rem;
        }
        .footer-section {
            flex: 1;
            min-width: 200px;
        }
        .footer-section h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--saffron-light);
            font-weight: 600;
        }
        .footer-section p {
            font-size: 0.85rem;
            line-height: 1.5;
            opacity: 0.9;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: #f0dbc8;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--saffron-light);
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 0.8rem;
        }
        .social-icons a {
            color: #f0dbc8;
            font-size: 1.3rem;
            transition: color 0.2s;
        }
        .social-icons a:hover {
            color: var(--saffron-light);
        }
        .signup-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .signup-form input {
            padding: 0.7rem 1rem;
            border-radius: 50px;
            border: none;
            font-family: inherit;
            font-size: 0.85rem;
            background: #fffaf2;
            color: #2c1a0e;
        }
        .signup-form button {
            background: var(--saffron);
            color: white;
            border: none;
            padding: 0.7rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
        }
        .signup-form button:hover {
            background: var(--saffron-dark);
        }
        .footer-bottom {
            text-align: center;
            padding: 1rem;
            border-top: 1px solid rgba(230, 177, 126, 0.3);
            font-size: 0.75rem;
        }
        .footer-bottom i {
            color: var(--saffron-light);
        }

        @media (max-width: 760px) {
            .container { padding: 1rem; }
            h1 { font-size: 1.7rem; }
            .sanskrit-flow { font-size: 1rem; line-height: 1.7; }
            .sanskrit-flow-card { padding: 1.2rem; }
            .tab-btn { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
            .footer-content { flex-direction: column; gap: 1.5rem; }
        }

        .scroll-top {
            position: fixed;
            bottom: 25px;
            right: 20px;
            background: var(--saffron);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 99;
        }
        .scroll-top.visible {
            opacity: 1;
        }