        :root {
            --primary-color: #1DD163;
            --secondary-color: #48E5C2;
            --background-color: #12121c;
            --card-bg-color: #1a1a2e;
            --text-color: #f0f0f0;
            --text-muted-color: #a0a0b0;
            --whatsapp-color: #25D366;
            --telegram-color: #0088cc;
            --popular-color: #ff9800;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

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

        /* Common Header & Navigation */
        .header {
            background-color: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-img {
            height: 40px;
            width: auto;
            border-radius: 8px; /* Optional: adds rounded corners to the logo */
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-muted-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-color);
        }
        
        .nav-links a.active {
            color: var(--primary-color);
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease-in-out;
            background-color: var(--text-color);
        }

        /* Page Content Wrapper */
        .page-content {
            padding-top: 80px; /* Offset for fixed header */
        }
        
        /* Common Section Styling */
        .section {
            padding: 80px 0;
        }
        
        .page-header {
            text-align: center;
            padding: 80px 0 40px 0;
        }

        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }
        
        .page-header p, .page-header .last-updated {
            font-size: 1.2rem;
            color: var(--text-muted-color);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-muted-color);
            max-width: 600px;
            margin: 0 auto 3rem auto;
        }

        /* Common Button Styling */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: var(--card-bg-color);
            color: var(--text-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        /* --- Home Page Specific Styles --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-animate 5s ease infinite;
        }

        @keyframes gradient-animate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

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

        .feature-item {
            background-color: var(--card-bg-color);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .feature-item .icon {
            font-size: 3rem; margin-bottom: 1rem;
            background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        .feature-item h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
        .feature-item p { color: var(--text-muted-color); }

        .bots-container {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
        }

        .bot-card {
            background-color: var(--card-bg-color); border-radius: 15px; padding: 2.5rem;
            max-width: 400px; flex-grow: 1; text-align: center; border-top: 5px solid;
            transition: transform 0.3s ease;
        }
        
        .bot-card:hover { transform: scale(1.03); }
        .bot-card.whatsapp { border-color: var(--whatsapp-color); }
        .bot-card.telegram { border-color: var(--telegram-color); }
        .bot-card h3 { font-size: 2rem; margin-bottom: 1rem; }
        .bot-card p { color: var(--text-muted-color); margin-bottom: 1.5rem; }
        .bot-card .price-tag {
            font-size: 1.1rem; font-weight: 600; padding: 0.5rem 1rem;
            border-radius: 20px; background-color: rgba(255, 255, 255, 0.1);
            display: inline-block; margin-bottom: 2rem;
        }
        
        /* --- Pricing Page Specific Styles --- */
        .pricing-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem; align-items: start;
        }
        
        .pricing-card {
            background: var(--card-bg-color); border-radius: 15px; padding: 2rem;
            display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
        }
        
        .pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
        .pricing-card.popular { border-color: var(--popular-color); border-width: 2px; }
        
        .popular-badge {
            position: absolute; top: 15px; right: -40px; background-color: var(--popular-color);
            color: black; padding: 5px 40px; font-weight: 700; font-size: 0.9rem; transform: rotate(45deg);
        }
        
        .pricing-card h3 { font-size: 1.5rem; font-weight: 600; }
        .price {
            font-size: 2.5rem; font-weight: 700; margin: 1rem 0;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .price span { font-size: 1rem; color: var(--text-muted-color); font-weight: 400; }
        .pricing-card .duration { font-weight: 600; color: var(--text-muted-color); margin-bottom: 1.5rem; }
        .features-list { list-style: none; margin-bottom: 2rem; text-align: left; }
        .features-list li { margin-bottom: 0.75rem; color: var(--text-muted-color); }
        .features-list li::before { content: '✔'; color: var(--primary-color); margin-right: 10px; font-weight: bold; }
        .pricing-card .btn { margin-top: auto; }

        .table-wrapper { overflow-x: auto; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; }
        .comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
        .comparison-table th, .comparison-table td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
        .comparison-table th { background-color: var(--card-bg-color); }
        .comparison-table td:not(:first-child) { text-align: center; }
        .checkmark { color: #25D366; font-weight: bold; font-size: 1.5rem; }
        .scroll-indicator { text-align: center; margin-top: 1rem; color: var(--text-muted-color); font-size: 0.9rem; display: none; }

        .faq-item { background-color: var(--card-bg-color); border-radius: 10px; margin-bottom: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); }
        .faq-item summary { padding: 1.5rem; font-weight: 600; cursor: pointer; outline: none; position: relative; }
        .faq-item summary::after { content: '+'; position: absolute; right: 1.5rem; font-size: 1.5rem; transition: transform 0.3s ease; }
        .faq-item[open] summary::after { transform: rotate(45deg); }
        .faq-answer { padding: 0 1.5rem 1.5rem; color: var(--text-muted-color); border-top: 1px solid rgba(255, 255, 255, 0.1); }
        
        /* --- About Page Specific Styles --- */
        #about .container, #sk .container, #privacy .container, #contact .container { max-width: 900px; }
        .content-section { margin-bottom: 3rem; }
        .content-section h2 { font-size: 1.8rem; margin-bottom: 1rem; border-left: 4px solid var(--primary-color); padding-left: 1rem; }
        .content-section p, .content-section ul { color: var(--text-muted-color); margin-bottom: 1rem; font-size: 1.1rem; }
        .founder-card { background: var(--card-bg-color); border-radius: 15px; padding: 2rem; border: 1px solid rgba(255,255,255,0.1); text-align: center; }
        .founder-card h3 { font-size: 1.5rem; color: var(--text-color); }
        .founder-card .role { font-size: 1rem; color: var(--secondary-color); font-weight: 600; margin-bottom: 1rem; }
        .platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
        .platform-card { background-color: var(--card-bg-color); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; }
        .platform-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
        .platform-card ul { list-style-type: '✓  '; padding-left: 1.2rem; font-size: 0.95rem; flex-grow: 1; }
        .platform-card .btn { margin-top: 1.5rem; }
        .cta-section { background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); padding: 3rem 2rem; border-radius: 15px; text-align: center; }
        .cta-section h2 { border-left: none; padding-left: 0; color: white; font-size: 2rem; }
        .cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
        .btn-whatsapp { background-color: var(--whatsapp-color); color: white; }

        /* --- Terms (SK) & Privacy Page Specific Styles --- */
        #sk .container, #privacy .container { max-width: 800px; }
        .legal-content { margin-bottom: 3rem; }
        .legal-content h2 {
            font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem;
            color: var(--text-color); border-bottom: 2px solid var(--card-bg-color); padding-bottom: 0.5rem;
        }
        .legal-content p, .legal-content ul { color: var(--text-muted-color); margin-bottom: 1rem; font-size: 1rem; }
        .legal-content ul { list-style-position: inside; padding-left: 1rem; }
        .legal-content li { margin-bottom: 0.5rem; }
        .legal-content a { color: var(--secondary-color); text-decoration: none; }
        .legal-content a:hover { text-decoration: underline; }
        .contact-info { background-color: var(--card-bg-color); padding: 2rem; border-radius: 12px; border-left: 5px solid var(--primary-color); }
        
        /* --- Contact Page Specific Styles --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .contact-form .form-group { margin-bottom: 1.5rem; }
        .contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-muted-color); }
        .contact-form input, .contact-form textarea {
            width: 100%; padding: 1rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: var(--card-bg-color); color: var(--text-color); font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }
        .contact-form textarea { resize: vertical; min-height: 150px; }
        .contact-info-sidebar h3 { font-size: 1.5rem; margin-bottom: 1rem; }
        .contact-info-sidebar p { color: var(--text-muted-color); }
        .contact-info-sidebar .info-item { margin-bottom: 1.5rem; }
        .contact-info-sidebar .info-item h4 { font-size: 1.1rem; color: var(--text-color); }
        .contact-info-sidebar .info-item a { color: var(--secondary-color); text-decoration: none; }
        
        /* Common Footer */
        .footer {
            background-color: var(--card-bg-color); padding: 3rem 0;
            margin-top: 60px; border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem; text-align: left; max-width: 1100px; margin: 0 auto; padding: 0 20px;
        }
        .footer-col h4 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--text-color); }
        .footer-col p, .footer-col a { color: var(--text-muted-color); text-decoration: none; display: block; margin-bottom: 0.5rem; transition: color 0.3s; }
        .footer-col a:hover { color: var(--text-color); }

        .copyright { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-muted-color); }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hamburger-menu { display: block; z-index: 1001; }
            .hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
            .hamburger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

            .nav-links {
                position: fixed; right: -100%; top: 0; gap: 0; flex-direction: column;
                background-color: var(--card-bg-color); width: 100%; height: 100vh;
                text-align: center; transition: right 0.3s ease-in-out; justify-content: center;
            }
            .nav-links.active { right: 0; }
            .nav-links li { padding: 1.5rem 0; }
            .nav-links a { font-size: 1.2rem; }
            
            .hero-content h1, .page-header h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .scroll-indicator { display: block; }
            .contact-grid { grid-template-columns: 1fr; }
        }