  :root {
            --color-primary: #3b134e;
            --color-secondary: #f23b4d;
            --color-dark: #1a0a23;
            --color-light: #f8f9fa;
            --gradient: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--color-dark);
            color: var(--color-light);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;         
        }
        
        /* Header */
        header {
            background: rgba(26, 10, 35, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(251, 251, 251, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            
        }

        .imglogo {
            width: 63px;
            height: 60px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-img {
            width: 63px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            /* background: var(--gradient); */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
        }        
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            /* background: var(--gradient); 
             color: transparent;
             */
            -webkit-background-clip: text;
            background-clip: text;
           color: var(--color-light);
        }
        
        .logo span {
            color: var(--color-light);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--color-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--color-secondary);
        }
        
        .user-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .btn {
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-login {
            background: transparent;
            color: var(--color-light);
            border: 1px solid var(--color-light);
        }
        
        .btn-register {
            background: var(--gradient);
            color: white;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(242, 59, 77, 0.3);
        }
        
        .user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .profile-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--color-secondary);
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 80px;
            background: var(--gradient);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 L1000,0 L1000,100 L0,100 Z" fill="%231a0a23" opacity="0.1"/></svg>');
            background-size: cover;
        }
        
        .hero-content {

            flex: 1;
            max-width: 600px;            
        }

        .heroheader{
            padding: 50px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual {
            width: 573px;
            height: 600px;            
            /* Este es el espacio para tu mockup de app */
            /* width: 276px;
            height: 600px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 40px;
            margin-left: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
            color: rgba(255,255,255,0.5); */
        }
        .imgvisual{            
            width: 276px;
            height: 600px;}                
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .slogan {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
            font-style: italic;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .btn-hero {
            background: var(--color-light);
            color: var(--color-primary);
            padding: 12px 30px;
            font-size: 1.1rem;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.2rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        /* Fun Section */
        .fun {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .fun-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .fun-text {
            padding-right: 20px;
        }
        
        .fun-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .fun-text p {
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .fun-visual {
            display: flex;
            justify-content: center;
            position: relative;
        }
        
        .fun-animation {
            width: 250px;
            height: 250px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }
        
        .fun-animation i {
            font-size: 4rem;
            margin-bottom: 10px;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* Community Section */
        .community {
            padding: 80px 0;
        }
        
        .community-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .community-visual {
            display: flex;
            justify-content: center;
        }
        
        .community-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Monetization Section */
        .monetization {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .monetization-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .monetization-text {
            padding-right: 20px;
        }
        
        .monetization-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .monetization-text p {
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .descargsection {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .features-list {
            list-style: none;
            margin-top: 20px;
        }
        
        .features-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .features-list li i {
            color: var(--color-secondary);
        }
        
        .monetization-visual {
            display: flex;
            justify-content: center;
            position: relative;
        }
        
        .gift-animation {
            width: 200px;
            height: 200px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }
        
        .gift-animation i {
            font-size: 4rem;
            margin-bottom: 10px;
        }
        
        /* Referral Program */
        .referral {
            padding: 80px 0;
        }
        
        .referral-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .referral-visual {
            display: flex;
            justify-content: center;
        }
        
        .referral-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            width: 250px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .referral-percent {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .referral-text {
            margin-bottom: 20px;
        }
        
        .referral-code {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 8px;
            font-family: monospace;
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background: rgba(10, 5, 15, 0.95);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--color-secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .contenedor-flex {
        display: flex;
        justify-content: center; /* Centrado horizontal */
        align-items: center;    /* Centrado vertical */
        margin: 20px;
        }
        
        .legal-link {
        color: var(--color-secondary);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px dashed var(--color-secondary);
        }

        .legal-link:hover {
        color: #ff6b81;
        border-bottom: 1px solid #ff6b81;
        }

        .legal-reference {
        color: var(--color-primary);
        font-weight: 600;
        background: rgba(59, 19, 78, 0.1);
        padding: 2px 6px;
        border-radius: 3px;
        text-decoration: none;
        }

        .legal-reference:hover {
        background: rgba(59, 19, 78, 0.2);
        }        
        
        /* Términos de Servicio */
        .terms-page {
            padding: 150px 0 80px;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .terms-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .last-updated {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            margin-bottom: 30px;
        }
        
        .terms-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--color-secondary);
            border-bottom: 2px solid rgba(242, 59, 77, 0.3);
            padding-bottom: 10px;
        }
        
        .terms-section h3 {
            font-size: 1.3rem;
            margin: 25px 0 15px;
            color: var(--color-light);
        }
        
        .terms-section p {
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .terms-section ul, .terms-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .terms-section strong {
            color: var(--color-secondary);
        }
        
        .warning-box {
            background: rgba(242, 59, 77, 0.1);
            border-left: 4px solid var(--color-secondary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        .info-box {
            background: rgba(59, 19, 78, 0.2);
            border-left: 4px solid var(--color-primary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }       

        /* Política de Privacidad */
        .privacy-page {
            padding: 150px 0 80px;
        }
        
        .privacy-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .privacy-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .last-updated {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            margin-bottom: 30px;
        }
        
        .privacy-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--color-secondary);
            border-bottom: 2px solid rgba(242, 59, 77, 0.3);
            padding-bottom: 10px;
        }
        
        .privacy-section h3 {
            font-size: 1.3rem;
            margin: 25px 0 15px;
            color: var(--color-light);
        }
        
        .privacy-section p {
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .privacy-section ul, .privacy-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .privacy-section strong {
            color: var(--color-secondary);
        }
        
        .highlight-box {
            background: rgba(59, 19, 78, 0.3);
            border-left: 4px solid var(--color-primary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        .gdpr-box {
            background: rgba(242, 59, 77, 0.1);
            border-left: 4px solid var(--color-secondary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        .contact-info {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .contact-info h3 {
            margin-bottom: 15px;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .data-table th {
            background: var(--gradient);
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .data-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .data-table tr:last-child td {
            border-bottom: none;
        }
        
        .data-table tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        
        /* Not Found Styles */
        .not-found-container {
        min-height: 100vh;
        background: var(--color-dark);
        padding: 150px 0 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        }

        .not-found-content {
        max-width: 800px;
        width: 100%;
        text-align: center;
        padding: 40px;
        }

        /* Animation */
        .not-found-animation {
        position: relative;
        width: 300px;
        height: 300px;
        margin: 0 auto 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        }

        .error-code {
        font-size: 8rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
        z-index: 2;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .animation-circle {
        position: absolute;
        border-radius: 50%;
        border: 2px solid rgba(242, 59, 77, 0.3);
        animation: pulse 3s infinite;
        }

        .circle-1 {
        width: 100%;
        height: 100%;
        border-color: rgba(59, 19, 78, 0.4);
        animation-delay: 0s;
        }

        .circle-2 {
        width: 70%;
        height: 70%;
        border-color: rgba(242, 59, 77, 0.3);
        animation-delay: 0.5s;
        }

        .circle-3 {
        width: 40%;
        height: 40%;
        border-color: rgba(255, 255, 255, 0.2);
        animation-delay: 1s;
        }

        @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.05);
            opacity: 0.8;
        }
        }

        /* Text Content */
        .not-found-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        color: var(--color-light);
        }

        .not-found-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto 40px;
        }

        /* Buttons */
        .not-found-actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 50px;
        flex-wrap: wrap;
        }

        .btn {
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        }

        .btn-primary {
        background: var(--color-primary);
        color: white;
        }

        .btn-primary:hover {
        background: #4a1a62;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(59, 19, 78, 0.3);
        }

        .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-light);
        border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-gradient {
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        color: white;
        }

        .btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(242, 59, 77, 0.3);
        }

        /* Search Box */
        .not-found-search {
        margin-bottom: 40px;
        }

        .search-box {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        }

        .search-input {
        width: 100%;
        padding: 15px 50px 15px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        color: var(--color-light);
        font-size: 1rem;
        transition: all 0.3s;
        }

        .search-input:focus {
        outline: none;
        border-color: var(--color-secondary);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(242, 59, 77, 0.1);
        }

        .search-btn {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        }

        .search-btn:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 5px 15px rgba(242, 59, 77, 0.3);
        }

        /* Useful Links */
        .not-found-links {
        margin-bottom: 50px;
        }

        .not-found-links h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--color-light);
        }

        .useful-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        }

        .useful-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s;
        border: 1px solid transparent;
        }

        .useful-links a:hover {
        background: rgba(242, 59, 77, 0.1);
        color: var(--color-secondary);
        border-color: rgba(242, 59, 77, 0.3);
        transform: translateY(-2px);
        }

        .useful-links a i {
        font-size: 1rem;
        }

        /* Stats */
        .not-found-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 50px;
        flex-wrap: wrap;
        }

        .stat-item {
        text-align: center;
        padding: 20px;
        min-width: 120px;
        }

        .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 10px;
        }

        .stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
        .not-found-container {
            padding: 120px 20px 40px;
        }
        
        .not-found-content {
            padding: 20px;
        }
        
        .error-code {
            font-size: 6rem;
        }
        
        .not-found-animation {
            width: 250px;
            height: 250px;
        }
        
        .not-found-title {
            font-size: 2rem;
        }
        
        .not-found-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        
        .useful-links {
            flex-direction: column;
            align-items: center;
        }
        
        .useful-links a {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        
        .not-found-stats {
            gap: 20px;
        }
        
        .stat-item {
            min-width: 100px;
            padding: 15px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        }

        @media (max-width: 480px) {
        .error-code {
            font-size: 4rem;
        }
        
        .not-found-animation {
            width: 200px;
            height: 200px;
        }
        
        .not-found-title {
            font-size: 1.5rem;
        }
        
        .not-found-description {
            font-size: 1rem;
        }
        }        
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }          
            
            .slogan {
                font-size: 1.2rem;
            }
            
            .fun-content, .community-content, .monetization-content, .referral-content {
                grid-template-columns: 1fr;
            }
            
            .fun-text, .monetization-text {
                padding-right: 0;
            }
            
            .community-stats {
                grid-template-columns: 1fr;
            }

            .terms-header h1 {
                font-size: 2.2rem;
            }
            
            .terms-content {
                padding: 20px;
            }
            
            .terms-section h2 {
                font-size: 1.5rem;
            }
            .privacy-header h1 {
                font-size: 2.2rem;
            }
            
            .privacy-content {
                padding: 20px;
            }
            
            .privacy-section h2 {
                font-size: 1.5rem;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .data-table {
                display: block;
                overflow-x: auto;
            }                        
        }