* {
    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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;


    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;
}


@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;
    }
}


.seo-wrapper {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    color: #222;
}

.seo-wrapper h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.seo-wrapper h2 {
    margin-top: 40px;
    font-size: 22px;
    color: #111;
}

.seo-wrapper p {
    font-size: 16px;
    margin-top: 10px;
}

.seo-wrapper .intro {
    font-size: 18px;
    color: #444;
}

.seo-image {
    width: 100%;
    border-radius: 14px;
    margin: 25px 0;
}

.disclaimer {
    margin-top: 40px;
    padding: 15px;
    background: #f5f5f5;
    border-left: 4px solid #999;
    font-size: 14px;
    color: #555;
}




.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);
}



/* 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: block;}
    



.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-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   
    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;
    
    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.3rem;
    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 */
.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;
}

/* 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.2rem 4rem;
    font-size: 1.4rem;
    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;
}

.video-link-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.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;
}

.video-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    animation: fadeInUp 1s ease-out both;
}

@media (max-width: 768px) {
    .video-link-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* Responsive Buttons Fix for Mobile */
@media (max-width: 576px) {

    /* Fix body and html overflow */
    html,
    body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Fix main content containers */
    .main-content,
    .container,
    section,
    .section,
    .seo-wrapper,
    .fancy-offer,
    .upgraded-offer,
    .contact-section,
    .comment-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Fix gradient buttons */
    .gradient-btn,
    .fancy-btn.gradient-btn,
    .offer-cta .gradient-btn,
    .upgraded-offer .gradient-btn {
        display: block !important;
        width: 90% !important;
        max-width: 90% !important;
        padding: 1rem 1rem !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
        margin: 0.5rem auto !important;
        line-height: 1.4 !important;
    }

    .offer-cta {
        padding: 0 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .fancy-offer .offer-btn,
    .telegram-contact-btn {
        display: block !important;
        width: 90% !important;
        max-width: 90% !important;
        padding: 1rem !important;
        font-size: 0.95rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
        margin: 0.5rem auto !important;
    }

    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Fix long URLs/links */
    a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }

    /* Fix content area */
    .content {
        width: 100% !important;
        padding: 0 10px !important;
    }

    /* Fix hero section */
    .hero-section {
        padding: 1rem !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        word-wrap: break-word !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    /* Fix text content */
    .text h2 {
        font-size: 1.3rem !important;
    }

    .text h4,
    .text p {
        font-size: 0.95rem !important;
    }
}

/* Comment Section Styles */
.comment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comment-section h3 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .comment-section {
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }

    .comment-section h3 {
        font-size: 1.4rem;
    }
}

/* Tablet Responsive Fixes (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {

    html,
    body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .main-content,
    .container,
    section,
    .section,
    .seo-wrapper,
    .fancy-offer,
    .upgraded-offer,
    .contact-section,
    .comment-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .gradient-btn,
    .fancy-btn.gradient-btn,
    .offer-cta .gradient-btn,
    .upgraded-offer .gradient-btn {
        display: inline-block !important;
        width: auto !important;
        max-width: 90% !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        text-align: center !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }
}

/* Large Mobile Responsive Fixes (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {

    html,
    body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .main-content,
    .container,
    section,
    .section,
    .seo-wrapper,
    .fancy-offer,
    .upgraded-offer,
    .contact-section,
    .comment-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .gradient-btn,
    .fancy-btn.gradient-btn,
    .offer-cta .gradient-btn,
    .upgraded-offer .gradient-btn {
        display: block !important;
        width: 85% !important;
        max-width: 85% !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        text-align: center !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
        margin: 0.5rem auto !important;
        line-height: 1.4 !important;
    }

    .offer-cta {
        padding: 0 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .fancy-offer .offer-btn,
    .telegram-contact-btn {
        display: block !important;
        width: 85% !important;
        max-width: 85% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
        margin: 0.5rem auto !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }

    
    

    .hero-title {
        font-size: 1.8rem !important;
        word-wrap: break-word !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .text h2 {
        font-size: 1.4rem !important;
    }

    .text h4,
    .text p {
        font-size: 1rem !important;
    }
}