/* 
-----------------------------
1.  Global & Root Styles
2.  Header & Navigation
3.  Hero Section
4.  Features Section
5.  Languages Section
6.  Footer
7.  Dialog (Coming Soon)
8.  Responsive Design
-----------------------------
*/

/* 1. Global & Root Styles */
:root {
    --electric-purple: #9D4EDD;
    --vibrant-green: #00FF9D;
    --dark-purple: #1A0B3D;
    --mid-purple: #2D1B69;
    --light-purple: #4A2B8C;
    --accent-blue: #3B82F6;
    --deep-purple: #1A0B3D;
    --white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-dark: rgba(255, 255, 255, 0.6);

    --gradient-primary: linear-gradient(135deg, var(--electric-purple), var(--vibrant-green));
    --gradient-background: radial-gradient(circle at top left, var(--mid-purple), var(--dark-purple) 40%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-purple);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.page-wrapper {
    background: var(--gradient-background);
}

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

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--vibrant-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Header & Navigation */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 11, 61, 0.8);
    backdrop-filter: blur(10px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    visibility: visible;
    opacity: 1;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.active {
    color: var(--vibrant-green);
    font-weight: 600;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 3. Hero Section */
.hero {
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Download Counter Styles */
.download-counter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem 0;
    align-items: center;
}

.counter-item {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.counter-item i {
    font-size: 2.5rem;
    color: var(--vibrant-green);
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.counter-item:hover i {
    transform: scale(1.1);
    color: #00ff88;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: none;
}

.counter-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Professional Stats Section */
.professional-stats {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 3rem 0;
    margin: 4rem 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.professional-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.professional-stats .container {
    position: relative;
    z-index: 2;
}

.professional-stats h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.professional-stats p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.professional-stats .download-counter {
    background: none;
    border: none;
    backdrop-filter: none;
    margin: 0;
    box-shadow: none;
}

.professional-stats .counter-item {
    background: none;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
}

.professional-stats .counter-item i {
    color: #ffffff;
    font-size: 3rem;
}

.professional-stats .counter-number {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.professional-stats .counter-label {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.professional-stats .counter-item:hover i {
    transform: scale(1.1);
    color: #00ff88;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.store-button img {
    height: 50px;
    transition: transform 0.3s;
}

.store-button:hover img {
    transform: scale(1.05);
}

/* Download APK Button Styles */
.download-apk {
    position: relative;
    overflow: hidden;
}

.download-apk::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-apk:hover::before {
    left: 100%;
}

.download-apk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.3);
}

.download-apk:active {
    transform: translateY(0);
}

.hero-image {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* 4. Features Section */
.features {
    background-color: rgba(0,0,0,0.1);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--vibrant-green);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 5. Languages Section */
.languages {
    text-align: center;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.language-list span {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}



/* 6. Demo Translator Section */
.demo-translator {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    padding: 4rem 0;
    position: relative;
}

.demo-translator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.01"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.01"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.translator-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}



.translator-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--dark-purple);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.info-card h3 {
    margin: 0 0 1.5rem 0;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

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

.language-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.language-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.lang-name {
    color: var(--vibrant-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.lang-region {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(34, 197, 94, 0.05) 50%, transparent 70%);
    animation: shimmer-cta 3s ease-in-out infinite;
}

@keyframes shimmer-cta {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    margin: 0 0 1rem 0;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.cta-content p {
    margin: 0 0 1.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-content li i {
    color: var(--vibrant-green);
    font-size: 0.85rem;
    min-width: 16px;
}

.download-btn {
    background: linear-gradient(135deg, var(--vibrant-green), var(--accent-blue));
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.4);
    color: var(--white);
}

.download-btn:active {
    transform: translateY(0);
}

/* 7. Footer */
.footer {
    background-color: var(--dark-purple);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0.5rem;
}

.footer-nav a:hover {
    color: var(--vibrant-green);
}

.copyright {
    color: var(--text-dark);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-nav {
        gap: 1rem;
        padding: 0 1rem;
    }

    .footer-nav a {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* 8. Dialog (Coming Soon) */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Download Notification Styles */
.download-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--dark-purple);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.download-notification.show {
    transform: translateX(0);
}

.download-notification.success {
    border-left: 4px solid var(--vibrant-green);
}

.download-notification.success i {
    color: var(--vibrant-green);
}

.download-notification span {
    font-size: 0.9rem;
    font-weight: 500;
}

.dialog-overlay.show {
    display: flex;
    opacity: 1;
}

.dialog {
    background: var(--mid-purple);
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dialog-content {
    padding: 1.5rem;
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dialog-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
}

.close-dialog {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.close-dialog:hover {
    color: var(--vibrant-green);
}

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

.dialog-icon {
    font-size: 2.5rem;
    color: var(--vibrant-green);
    margin-bottom: 1rem;
}

.dialog-body h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.dialog-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.feature-list li i {
    color: var(--vibrant-green);
    font-size: 0.9rem;
    min-width: 16px;
}

.signup-text {
    font-weight: 500;
    color: var(--white) !important;
    margin: 1rem 0 0.75rem 0 !important;
    font-size: 0.95rem;
}

.close-dialog-btn {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
}



/* 7. Responsive Design for Demo Translator */
@media (max-width: 1024px) {
    .translator-container {
        gap: 2rem;
        max-width: 800px;
    }
    
    .language-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Admin Dashboard Styles */
.dashboard-header {
    padding-top: 40px;
    padding-bottom: 60px;
}

.stats-overview {
    background-color: rgba(0,0,0,0.1);
    padding: 4rem 0;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--vibrant-green);
}

.stat-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-change.positive {
    color: var(--vibrant-green);
}

.stat-change.negative {
    color: #ef4444;
}

.stat-change.neutral {
    color: var(--text-light);
}

.download-sources {
    padding: 4rem 0;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.source-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.source-card:hover {
    transform: translateY(-3px);
}

.source-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.source-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.source-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.source-label {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.recent-activity {
    background-color: rgba(0,0,0,0.1);
    padding: 4rem 0;
}

.activity-list {
    max-width: 600px;
    margin: 0 auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-icon {
    font-size: 1.2rem;
    color: var(--vibrant-green);
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: var(--white);
    font-weight: 500;
}

.activity-time {
    color: var(--text-dark);
    font-size: 0.8rem;
}

.admin-actions {
    padding: 4rem 0;
}

.actions-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.action-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.3);
}

.action-btn:active {
    transform: translateY(0);
}

.action-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .demo-translator {
        padding: 3rem 0;
    }
    
    .translator-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .language-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .language-item {
        padding: 0.875rem;
    }
    
    .info-card,
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-content ul {
        gap: 0.5rem;
    }
    
    .cta-content li {
        font-size: 0.85rem;
    }
    
    .download-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .demo-translator {
        padding: 2rem 0;
    }
    
    .translator-container {
        padding: 0 0.75rem;
    }
    

    
    .info-card,
    .cta-card {
        padding: 1.25rem;
    }
    
    .info-card h3,
    .cta-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* 8. Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Mobile download counter */
    .download-counter {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .counter-item {
        gap: 0.25rem;
    }

    .counter-number {
        font-size: 1.5rem;
    }

    .counter-label {
        font-size: 0.8rem;
    }

    /* Mobile download notification */
    .download-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .download-notification.show {
        transform: translateY(0);
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .main-nav {
        gap: 1.5rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: background-color 0.3s;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-btn {
        display: none; /* Hide download button on mobile to save space */
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .store-button img {
        height: 60px; /* Larger touch targets */
        min-width: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
        margin: 0;
    }

    .feature-card:active {
        transform: scale(0.98);
    }

    .language-list {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .language-list span {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Mobile-optimized dialog */
    .dialog {
        width: 95%;
        max-width: 350px;
        margin: 0.5rem;
        max-height: 85vh;
    }

    .dialog-content {
        padding: 1.25rem;
    }

    .dialog-header h3 {
        font-size: 1.2rem;
    }

    .dialog-body h4 {
        font-size: 1rem;
    }

    .dialog-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .dialog-form input {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .close-dialog-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .dialog-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .dialog-body p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .feature-list li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .signup-text {
        font-size: 0.9rem;
        margin: 0.75rem 0 0.5rem 0 !important;
    }


}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.7;
    }

    .container {
        padding: 0 15px;
    }

    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
    }

    .store-button img {
        height: 55px;
        min-width: 180px;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .language-list span {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Enhanced touch interactions */
    .btn, .nav-link, .feature-card, .store-button {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .btn:active, .nav-link:active, .feature-card:active, .store-button:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }

    /* Mobile navigation improvements */
    .header {
        padding: 1rem 0;
    }

    .logo h2 {
        font-size: 1.3rem;
    }

    /* Better spacing for mobile */
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    /* Mobile-optimized footer */
    .footer {
        padding: 1.5rem 0;
    }

    .footer p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* Extra small screen dialog optimization */
    .dialog {
        width: 98%;
        max-width: 320px;
        margin: 0.25rem;
        max-height: 80vh;
    }

    .dialog-content {
        padding: 1rem;
    }

    .dialog-header h3 {
        font-size: 1.1rem;
    }

    .dialog-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .dialog-body h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .dialog-body p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .feature-list {
        margin: 0.75rem 0;
    }

    .feature-list li {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        gap: 0.4rem;
    }

    .signup-text {
        font-size: 0.85rem;
        margin: 0.5rem 0 0.5rem 0 !important;
    }

    .close-dialog-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* Touch-friendly improvements for all devices */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .feature-card, .store-button {
        min-height: 44px; /* Apple's recommended minimum touch target */
        min-width: 44px;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-card {
        cursor: pointer;
    }

    .store-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .store-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .store-button img {
        height: 50px;
        min-width: 160px;
    }
} 

/* Privacy Policy Styles */
.privacy-policy {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.privacy-policy .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-policy .section-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section h2 i {
    color: var(--vibrant-green);
    font-size: 1.2rem;
}

.policy-section h3 {
    color: var(--vibrant-green);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: var(--text-light);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.policy-section strong {
    color: var(--white);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--vibrant-green);
    width: 20px;
} 

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--vibrant-green);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
    transition: all 0.3s ease;
}

.cookie-banner.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.cookie-banner.show {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
    overflow: visible;
    padding: 1.5rem;
    margin: 0;
    border-top: 2px solid var(--vibrant-green);
}

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

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    color: var(--vibrant-green);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.cookie-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--vibrant-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #00ff88;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--vibrant-green);
    color: #000;
}

.cookie-btn.accept:hover {
    background: #00ff88;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* Visitor Trends for Admin Dashboard */
.visitor-trends {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.trend-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trend-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--vibrant-green);
    transform: translateY(-2px);
}

.trend-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.trend-count {
    color: var(--vibrant-green);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
} 