        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .header {
            width: 100%;
            text-align: center;
            padding: 60px 0 40px;
        }

        .logo {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #1a1a1a;
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
            overflow: hidden;
        }

        .logo img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .main-heading {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }


        .top-telegram-button{
            display: inline-block;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            color: #1a1a1a;
            padding: 10px 30px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-block: 20px;
        }
        

        .description {
            font-size: 1.35rem;
            color: #cccccc;
            max-width: 900px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        /* Steps Section */
        .steps-section {
            border-radius: 20px;
            padding: 40px 30px;
            margin: 40px 0;
            backdrop-filter: blur(10px);
        }

        .steps-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .step {
            text-align: center;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .app-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        a.app-button {
            display: inline-block;
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            height: 60px;
        }
        
        .app-button img{
            transition: all 0.3s ease;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .app-button img:hover {
            border-color: #06b6d4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
        }

        .telegram-step {
            position: relative;
        }

        .telegram-instruction {
            font-size: 1rem;
            color: #cccccc;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        
        .telegram-button {
            display: inline-block;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            color: #1a1a1a;
            padding: 15px 30px;
            font-size: 1rem;
            text-align: center;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .telegram-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
        }

        .telegram-description {
            font-size: 0.9rem;
            color: #b0b0b0;
            line-height: 1.5;
            max-width: 300px;
            margin: 0 auto;
        }

        .telegram-description strong {
            color: #06b6d4;
        }

        @media (max-width: 768px) {
            .steps-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .step-title {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .main-heading {
                font-size: 1.8rem;
            }
        }

        /* Benefits Section */
        .benefits-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 30px;
            margin: 50px 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(6, 182, 212, 0.1);
        }

        .benefits-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #06b6d4;
            font-weight: bold;
        }

        .benefits-list {
            list-style: none;
            max-width: 600px;
            margin: 0 auto;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border-left: 4px solid #06b6d4;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
        }

        .benefit-emoji {
            font-size: 1.5rem;
            margin-right: 15px;
            min-width: 30px;
        }

        .benefit-text {
            font-size: 1rem;
            color: #e0e0e0;
            line-height: 1.6;
        }

        .benefit-text strong {
            color: #06b6d4;
            font-weight: bold;
        }

        /* Results Section */
        .results-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 30px;
            margin: 50px 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(6, 182, 212, 0.1);
            text-align: center;
        }

        .results-title {
            font-size: 2rem;
            margin-bottom: 40px;
            color: #06b6d4;
            font-weight: bold;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .result-image {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgb(6, 181, 212);
            overflow: hidden;
        }

        .result-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
        }

        .result-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        @media (max-width: 768px) {
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .results-title {
                font-size: 1.5rem;
            }

            .results-section {
                padding: 30px 20px;
                margin: 30px 10px;
            }
        }

        /* FAQ Section */
        .faq-section {
            /* background: rgba(255, 255, 255, 0.05); */
            border-radius: 20px;
            /* padding: 50px 30px; */
            /* margin: 50px 0; */
            backdrop-filter: blur(10px);
            /* border: 1px solid rgba(6, 182, 212, 0.1); */
            margin-top: 32px;
        }

        .faq-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #06b6d4;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
        }

        .faq-question {
            background: #ffffff;
            color: #1a1a1a;
            padding: 20px 25px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: none;
            width: 100%;
            text-align: left;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            color: #666;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            background: #f8f9fa;
            color: #333;
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px 25px;
        }

        .faq-disclaimer {
            text-align: center;
            color: #cccccc;
            font-size: 0.9rem;
            margin-top: 30px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 1.5rem;
            }

            .faq-question {
                padding: 15px 20px;
                font-size: 0.9rem;
            }

            .faq-answer {
                font-size: 0.9rem;
            }
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 0;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            color: #1a1a1a;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
            background: linear-gradient(45deg, #0891b2, #06b6d4);
        }

        .cta-button::before {
            content: "📱 ";
            margin-right: 8px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2rem;
            }

            .description {
                font-size: 1rem;
                padding: 0 10px;
            }

            .benefits-section {
                padding: 30px 20px;
                margin: 30px 10px;
            }

            .benefit-item {
                padding: 15px;
                margin-bottom: 20px;
            }

            .benefit-text {
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .main-heading {
                font-size: 1.7rem;
            }

            .benefits-title {
                font-size: 1.5rem;
            }

            .benefit-item:hover {
                transform: none;
            }
        }

        /* Decorative Elements */
        .bg-decoration {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.1;
            background-image:
                radial-gradient(circle at 20% 80%, #06b6d4 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #06b6d4 0%, transparent 50%);
        }
        
        
        
          .countdown-section {
            text-align: center;
            margin: 0;
        }


        .countdown-heading {
            color: #ffffff;
            font-size: 2rem;
            margin-top: 20px;
            font-weight: normal;
        }

        .countdown-container {
            max-width: 500px;
            margin: 0 auto;
        }

        .countdown-display {
            margin: 0;
        }

        .countdown-number {
            display: inline-block;
            color: #06b6d4;
            font-size: 5rem;
            font-weight: bold;
            margin: 0;
        }

        @media (max-width: 768px) {
            .countdown-number {
                font-size: 4rem;
            }
        }