        :root {
            --primary-color: #0d1117;
            --secondary-color: #161b22;
            --accent-color: #58a6ff;
            --text-color: #c9d1d9;
            --border-color: #30363d;
            --card-bg: #21262d;
            --hover-color: #2c333a;
            --alt-bg: #0d1117;
            --main-bg: #161b22;
            --color-header-bg: #161b22;
            --color-text-primary: #c9d1d9;
            --color-border-primary: #30363d;
            --color-accent-emphasis: #1f6feb;
            --color-bg-primary: #161b22;
            --color-header-text: #f0f6fc;
            --color-text-secondary: #8b949e;
            --color-accent-primary: #58a6ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--primary-color);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--secondary-color);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
        }

        .menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-color);
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
        }

        .nav-menu a.active {
            color: var(--accent-color);
        }


        /* Page Header */
        .page-header {
            padding: 140px 0 80px;
            text-align: center;
            background: linear-gradient(135deg, var(--main-bg), var(--primary-color));
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(88, 166, 255, 0.1), transparent),
                        radial-gradient(circle at 70% 80%, rgba(31, 111, 235, 0.1), transparent);
            pointer-events: none;
        }

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

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--color-header-text);
            background: linear-gradient(135deg, var(--accent-color), #4193e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--color-text-secondary);
        }

        /* Coming Soon Section */
        .coming-soon-section {
            padding: 120px 0;
            text-align: center;
            position: relative;
        }

        .coming-soon-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .coming-soon-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-color), #4193e0);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            font-size: 3rem;
            color: white;
            position: relative;
            animation: pulse 2s infinite;
        }

        .coming-soon-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-color), #4193e0);
            opacity: 0.2;
            animation: ripple 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes ripple {
            0% { transform: scale(1); opacity: 0.2; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        .coming-soon-title {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--color-header-text);
            font-weight: 700;
        }

        .coming-soon-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-weight: 500;
        }

        .coming-soon-description {
            font-size: 1.1rem;
            color: var(--color-text-secondary);
            margin-bottom: 50px;
            line-height: 1.8;
        }

        /* Blog Topics Preview */
        .blog-topics {
            margin-top: 80px;
        }

        .blog-topics h3 {
            font-size: 2rem;
            margin-bottom: 40px;
            color: var(--color-header-text);
            text-align: center;
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .topic-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(88, 166, 255, 0.05), rgba(31, 111, 235, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .topic-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
        }

        .topic-card:hover::before {
            opacity: 1;
        }

        .topic-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }

        .topic-card:nth-child(1) .topic-icon {
            background: linear-gradient(135deg, #306998, #ffd43b);
            color: white;
        }

        .topic-card:nth-child(2) .topic-icon {
            background: linear-gradient(135deg, #00d4aa, #00a8ff);
            color: white;
        }

        .topic-card:nth-child(3) .topic-icon {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            color: white;
        }

        .topic-card:nth-child(4) .topic-icon {
            background: linear-gradient(135deg, #a55eea, #26de81);
            color: white;
        }

        .topic-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-header-text);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .topic-description {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, var(--card-bg), var(--secondary-color));
            border-radius: 20px;
            padding: 60px 40px;
            margin: 80px 0;
            text-align: center;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(88, 166, 255, 0.1), transparent);
            pointer-events: none;
        }

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

        .newsletter-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-color), #4193e0);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            color: white;
        }

        .newsletter-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--color-header-text);
        }

        .newsletter-description {
            font-size: 1.1rem;
            color: var(--color-text-secondary);
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 400px;
            margin: 0 auto;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 15px 20px;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            background: var(--primary-color);
            color: var(--text-color);
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
        }

        .newsletter-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--accent-color), #4193e0);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(88, 166, 255, 0.3);
        }

         /*Logo*/
        .logo-img {
            height: 40px;
            width: auto;
            transition: all 0.3s ease;
            }

        .logo-img:hover {
             transform: scale(1.05);
            opacity: 0.9;
            }

        .logo {
                display: flex;
                align-items: center;
            }

        /* Footer */
        footer {
            background: linear-gradient(to bottom, var(--color-bg-primary), #10141b);
            padding: 60px 0 40px;
            border-top: 1px solid rgba(88, 166, 255, 0.2);
            margin-top: 80px;
        }

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

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-header-text);
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(88, 166, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }

        .footer-social a i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .footer-social a:hover i {
            color: var(--primary-color);
        }

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

        /* Floating particles animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            display: block;
            width: 4px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0.5;
            animation: float 6s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--secondary-color);
                width: 100%;
                padding: 20px;
                transition: 0.5s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .page-header {
                padding: 120px 0 60px;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .coming-soon-section {
                padding: 80px 0;
            }

            .coming-soon-title {
                font-size: 2.2rem;
            }

            .coming-soon-subtitle {
                font-size: 1.2rem;
            }

            .topics-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .newsletter-form {
                flex-direction: column;
                align-items: stretch;
            }

            .newsletter-input {
                min-width: unset;
            }
        }

        @media (max-width: 480px) {
            .coming-soon-icon {
                width: 100px;
                height: 100px;
                font-size: 2.5rem;
            }

            .coming-soon-title {
                font-size: 1.8rem;
            }

            .newsletter-section {
                padding: 40px 20px;
                margin: 60px 0;
            }
        }
        
/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    color: white;
    font-size: 2rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid rgba(0, 0, 0, 0.8);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn i {
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-btn i {
        font-size: 1.3rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}