* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            min-height: 100vh;
        }

        /* Advanced Header */
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideDown 0.8s ease-out;
        }
        

 .po{ color: #3a7bd5;
       animation:  dimLight 2s ease-in-out infinite;
       font-size: 30px;
        

        }


        @keyframes dimLight {
            0% {
              opacity:0.3 ;
                          }
            50% {
              opacity: 1;
                          }
            100% {
              opacity: 0.3;
             
            }
          }


       keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }


       keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
     
       h3{
            font-size: 120px;
        } 

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .logo-icon {
            width: 50px;
            height: 50px;
           background: linear-gradient(135deg, white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            animation:dimLight 2s ease-in-out forwards  ;
        } 
        .logo-icon p{
            animation: dimLight 2s ease-in-out forwards;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .nav-links a:hover::before {
            left: 100%;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .language-switcher {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .language-switcher img {
            width: 25px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .language-switcher img:hover {
            transform: scale(1.2);
            border-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 8px;
            background-color: whitesmoke;
           
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Main Content */
        .main-content {
            margin-top: 100px;
            background: rgba(255,255,255,0.95);
            border-radius: 20px 20px 0 0;
            min-height: calc(100vh - 100px);
            padding: 2rem 0;
        }

        .hero-section {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            margin-bottom: 3rem;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        /* Section Styles */
        .section {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .section.reverse .content {
            flex-direction: column-reverse;
        }

        .image {
            flex: 1;
            text-align: center;
        }

        .image img {
            width: 100%;
            max-width: 350px;
            height: auto;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .image img:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* Circular images for first two sections */
        .section:nth-of-type(1) .image img,
        .section:nth-of-type(2) .image img {
            border-radius: 50%;
            border: 6px solid #f093fb;
            max-width: 300px;
            aspect-ratio: 1;
        }

        /* Square images for other sections */
        .section:nth-of-type(n+3) .image img {
            border-radius: 20px;
            border: 3px solid #667eea;
            max-width: 400px;
        }

        .text {
            flex: 1;
            text-align: center;
        }

        .text h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        /* Video Section */
        .video-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 4rem 2rem;
            margin: 3rem 0;
            text-align: center;
        }

        .video-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .video-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        .video-title {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
       


        /* YouTube Thumbnail Placeholder */
        .youtube-thumbnail-placeholder {
            position: relative;
            display: inline-block;
            cursor: pointer;
            width: 100%;
            height: 450px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin: 0 auto;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .youtube-thumbnail-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .youtube-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 50px;
            background: rgba(255, 0, 0, 0.9);
           border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .youtube-play-button:after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-left: 20px solid white;
            margin-left: 5px;
        }

        .coming-soon-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #6a3093 0%, #a044ff 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 10;
        }

        /* About Poppo Page */
        .about-poppo {
            display: none;
            padding: 2rem;
            background: white;
            min-height: 100vh;
        }

        .about-poppo.active {
            display: block;
        }

        .about-poppo {
            padding: 4rem 2rem;
            background: #ffffff;
        }
        .about-poppo h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }
        .zigzag-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .zigzag-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .zigzag-item:nth-child(even) .zigzag-content { order: 2; }
        .zigzag-item:nth-child(even) .zigzag-media  { order: 1; }

        .zigzag-content, .zigzag-media {
            flex: 1;
            min-width: 300px;
        }

        .zigzag-content h2 {
            font-size: 2rem;
            color: #667eea;
            margin-bottom: 1rem;
        }

        .zigzag-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
        }

        .zigzag-media img,
        .zigzag-media iframe {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        /* Resize zigzag and video iframes to square 40vw */
        .zigzag-media iframe,
        .video-container iframe,
        .about-video {
            width: 40vw;
            height: 40vw;
            max-width: 700px;
            max-height: 700px;
            margin: 0 auto;
            display: block;
        }

        /* FAQ Section */
        .faq-section {
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        .faq-section h2 {
            text-align: center;
            color: white;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        .accordion details {
            background: wheat;
            border-radius: 10px;
            margin-bottom: 1rem;
            padding: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .accordion summary {
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            list-style: none;
            outline: none;
        }
        .accordion summary::-webkit-details-marker { display: none; }
        .accordion summary:after {
            content: '+';
            float: right;
            font-size: 1.2rem;
        }
        .accordion details[open] summary:after {
            content: '-';
        }
        .accordion details p {
            margin-top: 1rem;
            color: #333;
            line-height: 1.6;
        }

        /* Contact Page */
        .contact-page {
            display: none;
            padding: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .contact-page.active {
            display: block;
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .contact-header {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            padding: 3rem 2rem;
            text-align: center;
            color: white;
        }

        .contact-avatar {
            width: 100%;
            height: auto;      /* maintain full image height */
            object-fit: contain; /* show full image */
            border-radius: 10px;
            border: none;
            margin: 0 0 1.5rem;
        }

        .contact-info {
            padding: 3rem 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-item {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .contact-item i {
            font-size: 2rem;
            color: #667eea;
            margin-bottom: 1rem;
        }

        /* Contact Section Enhancements */
        .contact-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        .contact-section .contact-container {
            background: #ffffff;
            border: none;
        }
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            font-size: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .contact-item:hover .icon-circle {
            transform: scale(1.1);
        }
        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333333;
        }
        .contact-item p,
        .contact-item a {
            color: #555555;
            font-weight: 500;
            text-decoration: none;
        }
        /* Icon circle specifics */
        .icon-circle i {
            color: #ffffff;
            font-size: 1.5rem;
        }

        /* Fancy Telegram button */
        .contact-section .telegram-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        .contact-section .telegram-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        /* Link Styles */
        .linkbox {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        .linkbox a {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .linkbox a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        /* Enhanced Final Step Styles */
        .enhanced-step {
            background: #f0f4ff;
            border-radius: 20px;
            padding: 3rem 2rem;
            margin: 2rem auto;
        }

        .enhanced-step .info-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .enhanced-step .info-card {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            width: 250px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .enhanced-step .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .enhanced-step .info-card i {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .enhanced-step .info-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .enhanced-step .info-card .live-id {
            font-weight: bold;
            font-size: 1.5rem;
        }

        .enhanced-step .info-card .invitation-link {
            color: #fff;
            text-decoration: underline;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .enhanced-step .info-cards {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Fancy circular buttons for Poppo link */

        h3{
            font-size: 100px;
        }

        .fancy-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .fancy-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 180px;
            height: 140px;
            border-radius: 50%;
            color: #fff;
            font-weight: 500;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: pulse 2.5s ease-in-out infinite;
        }

        .fancy-btn::before {
            content: "";
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 50%;
        }

        .fancy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .fancy-btn:hover::before {
            opacity: 1;
        }

        /* Color variations */
        .fancy-btn.color1 {
            background: #FF7A59;       /* Poppo orange */
        }
        .fancy-btn.color2 {
            background: #FFBF59;       /* Poppo yellow */
        }
        .fancy-btn.color3 {
            background: #59CFFF;       /* Poppo light-blue */
        }
        .fancy-btn.color4 {
            background: #C359FF;       /* Poppo purple */
        }

        /* Pulse animation */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.07); }
        }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .fancy-btn {
                width: 100px;
                height: 100px;
                font-size: 0.9rem;
            }
            .fancy-buttons {
                gap: 0.8rem;
            }
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .content {
                flex-direction: row;
                text-align: left;
            }

            .section.reverse .content {
                flex-direction: row-reverse;
            }

            .text {
                text-align: left;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .hero-subtitle {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(102, 126, 234, 0.95);
                flex-direction: column;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .text h2 {
                font-size: 1.5rem;
            }

            .text p {
                font-size: 1rem;
            }

            .zigzag-item {
                flex-direction: column !important;
                gap: 1.5rem;
            }

            .video-container iframe {
                height: 250px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            /* Reverse specific section on mobile to show text above image */
            .reverse-on-mobile .content {
                flex-direction: column-reverse !important;
            }
        }

        /* Update agency registration section background and button sizing */
        .upgraded-offer {
            background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
        }
        .upgraded-offer .gradient-btn {
            padding: 1.2rem 4rem; /* increased size */
            font-size: 1.3rem;
        }

        /* Center the CTA button text */
        .offer-cta {
            text-align: center;
            margin-top: 1.5rem;
            
        }
        .offer-cta .gradient-btn {
            display: inline-block;
            text-align: center;
        }

        /* Additional Animations */
        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .slide-in-left {
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Footer */
        .site-footer {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: #f0f0f0;
            text-align: center;
            padding: 3rem 2rem;
            font-size: 1rem;
        }

        .site-footer a {
            color: #4eaaff;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .site-footer a:hover {
            color: #00ffd5;
        }

        /* Template Owner Contact Section */
        .template-contact-section {
            background: linear-gradient(135deg, #2c3e50, #4a69bd);
            padding: 4rem 2rem;
            margin-bottom: 0;
            position: relative;
            overflow: hidden;
        }

        .template-contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #00d2ff, #3a7bd5, #00d2ff);
            animation: gradientFlow 3s infinite linear;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .contact-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 3rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            text-align: center;
            animation: pulseGlow 6s infinite alternate;
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
            100% { box-shadow: 0 8px 32px rgba(78, 170, 255, 0.4); }
        }

        .contact-title {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: textShimmer 3s infinite;
        }

        @keyframes textShimmer {
            0% { color: white; }
            50% { color: #4eaaff; }
            100% { color: white; }
        }

        .contact-title:after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #4eaaff, transparent);
            animation: expandLine 3s ease-in-out infinite;
        }

        @keyframes expandLine {
            0%, 100% { transform: scaleX(0.3); opacity: 0.5; }
            50% { transform: scaleX(1); opacity: 1; }
        }

        .amharic-text {
            color: black;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            text-align: center;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .telegram-contact-btn {
            display: inline-block;
            background: linear-gradient(90deg, #0088cc, #005f8c);
            color: white;
            font-weight: bold;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
            animation: pulse 2s infinite;
        }

        .telegram-contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
        }

        .telegram-contact-btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 136, 204, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
        }

        /* Edit Offer Section */
        .edit-offer {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 2px solid #f59e0b;
            border-radius: 20px;
            padding: 3rem 2rem;
            margin: 3rem auto;
            text-align: center;
            max-width: 800px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .telegram-btn {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #0088cc, #005f8d);
            color: white;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .telegram-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        /* Ensure about-poppo and FAQ visible when active */
        #about-poppo-page {
            display: none;
        }
        #about-poppo-page.active {
            display: block;
        }
        /* Ensure FAQ sections are hidden by default, shown under about-poppo */
        .faq-section {
            display: none;
        }
        #about-poppo-page.active + .faq-section,
        #about-poppo-page.active ~ .faq-section {
            display: block;
        }

        /* Fancy circular animated copy card for Poppo Live ID */
        .copy-card {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: linear-gradient(45deg, #FF7A59, #C359FF, #59CFFF, #FFBF59);
            background-size: 400% 400%;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-align: center;
            position: relative;
            cursor: pointer;
            animation: gradientShift 6s ease infinite, pulse 2s ease-in-out infinite;
        }

        .copy-card .live-id {
            font-size: 1.5rem;
            margin-top: 0.5rem;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .copy-card::after {
            content: 'Copied!';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 0.3rem 0.6rem;
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-size: 0.8rem;
        }

        .copy-card.copied::after {
            opacity: 1;
        }

       
        /* new wyni*/
        .offer-cta {
  text-align: center;
  padding: 10px;
}

.fancy-btn.gradient-btn {
  display: inline-block;
  width: 90%;          /* makes it fit smaller screens */
  max-width: 300px;    /* prevents it from being too wide on laptop */
  padding: 12px;
  background: linear-gradient(to right, #f72585, #7209b7);
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  box-sizing: border-box;
}


        /* Fancy Offer (Become Agent) Section */
        .fancy-offer {
            background: #ffffff;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 3rem auto;
            max-width: 1000px;
        }
        .fancy-offer .offer-container {
            text-align: center;
        }
        .fancy-offer h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #333;
            font-weight: 700;
        }
        .fancy-offer .offer-steps {
            display: flex;
            justify-content: space-around;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }
        .fancy-offer .offer-step {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 15px;
            flex: 1 1 200px;
            max-width: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .fancy-offer .offer-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .fancy-offer .step-icon {
            background: linear-gradient(45deg, #59CFFF, #C359FF);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1rem;
        }
        .fancy-offer .offer-step p {
            font-size: 1rem;
            color: #555;
            margin: 0;
        }
        .fancy-offer .offer-btn {
            display: inline-block;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #FF7A59, #C359FF);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .fancy-offer .offer-btn:hover {
            transform: scale(1.05);
        }

        /* Poppo Live Advanced Offer Section Styles */
        .upgraded-offer .offer-body {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .upgraded-offer .offer-steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            flex: 1 1 60%;
        }
        .upgraded-offer .step-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        .upgraded-offer .step-card:hover {
            transform: translateY(-5px);
        }
        .upgraded-offer .step-number {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .upgraded-offer .icon-wrapper {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }
        .upgraded-offer .offer-image {
            flex: 1 1 35%;
            text-align: center;
        }
        .upgraded-offer .offer-image img {
            width: 100%;
            max-width: 350px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        .upgraded-offer .gradient-btn {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 1.6rem 6rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: background 0.4s ease, transform 0.3s ease;
            text-align: center;
            
        }
        .upgraded-offer .gradient-btn:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .upgraded-offer .offer-body {
                flex-direction: column;
            }
            .upgraded-offer .offer-steps-grid,
            .upgraded-offer .offer-image {
                flex: 1 1 100%;
            }
        }

        .video-link-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            margin-top: 1rem;
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, #FF0000, #CC0000);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: none;
        }

        .video-link-btn i {
            margin-right: 8px;
            font-size: 1.2rem;
            text-transform: none;
        }

        .video-link-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.2);
        }

        .video-link-btn:hover::before {
            transform: scaleX(1.1) scaleY(1.3);
            opacity: 0;
        }

        .video-link-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
            z-index: -1;
            transform: scaleX(1) scaleY(1);
            opacity: 1;
            transition: transform 0.5s ease, opacity 0.5s ease;
            text-transform: none;
        }

        .video-link-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin: 1rem 0;
            animation: fadeInUp 1s ease-out both;
            text-transform: none;
        }

        @media (max-width: 768px) {
            .video-link-btn {
                padding: 0.75rem 1.75rem;
                font-size: 0.9rem;
            }
            h3{
                font-size: 60px;
            }
        }
