/* ===========================
   EASY AI TRAINING
   STYLE SHEET - VERSION 2
=========================== */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f3f4f6;
}

/* ===========================
   WELCOME SCREEN
=========================== */

#welcome-screen{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.welcome-content{

    width:90%;

    max-width:700px;

    margin:0 auto;

    text-align:center;

}

.welcome-content{
    width:90%;
    max-width:700px;
    margin:0 auto;
    text-align:center;
}

.welcome-content h1{
    color:#ffffff;
    font-size:64px;
    line-height:1.1;
    margin-bottom:28px;
}

.welcome-content p{
    color:#d7dbe6;
    max-width:620px;
    margin:0 auto 40px;
    font-size:25px;
    line-height:1.7;
    text-align:center;
}

#beginBtn{

    background:linear-gradient(180deg,#22c55e 0%,#16a34a 100%);

    color:#ffffff;

    font-weight:700;

    border:none;

    border-radius:18px;

    padding:20px 44px;

    font-size:22px;

    cursor:pointer;

    box-shadow:
        0 12px 30px rgba(22,163,74,.28),
        0 3px 8px rgba(0,0,0,.18);

    transition:all .25s ease;

}

#beginBtn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 16px 36px rgba(22,163,74,.35),
        0 6px 14px rgba(0,0,0,.22);

}

/* ===========================
   MAIN WEBINAR
=========================== */

.container{

    max-width:1100px;

    margin:auto;

    padding:20px;

}

.header{

    background:#111827;

    color:white;

    padding:20px;

    border-radius:10px;

    font-size:34px;

    font-weight:bold;

    text-align:center;

    margin-bottom:20px;

}

.video-box{

    background:white;

    padding:12px;

    border-radius:10px;

    box-shadow:0 3px 15px rgba(0,0,0,.12);

}

.comments{

    margin-top:25px;

    background:white;

    padding:20px;

    border-radius:10px;

    box-shadow:0 3px 15px rgba(0,0,0,.12);

}

.offer{

    display:none;

}
/* ==========================================
   CONNECTING SCREEN
========================================== */

#loading-screen{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9998;
}

.loading-content{
    text-align:center;
    color:white;
    width:90%;
    max-width:700px;
}

.loading-content h1{
    font-size:48px;
    margin-bottom:40px;
}

#countdown-number{
    font-size:90px;
    font-weight:bold;
    color:#22c55e;
    margin-bottom:25px;
}

#loading-message{
    font-size:24px;
    color:#d1d5db;
    margin-bottom:40px;
    line-height:1.6;
}

.loader-circle{
    width:90px;
    height:90px;
    border:8px solid rgba(255,255,255,.2);
    border-top:8px solid #22c55e;
    border-radius:50%;
    margin:auto;
    animation:spin 1s linear infinite;
}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}
/* ==========================================
   PREMIUM WEBINAR PLAYER
========================================== */

.webinar-wrapper{
    width:90%;
    max-width:1100px;
    margin:40px auto;
}

.video-container{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
    background:#000;
}

.video-container iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}
/* ==========================================
   TIMED OFFER CARD
========================================== */

#offer-card{

    position:relative;

    width:90%;
    max-width:450px;

    background:white;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    border:3px solid #22c55e;

    opacity:0;
visibility:hidden;

    transform:translateY(-20px) scale(.9);
margin:40px auto;

    transition:all .4s ease;

    z-index:9999;

}

#offer-card h2{

    color:#111827;

    margin-bottom:15px;

}

#offer-card p{

    color:#6b7280;

    margin-bottom:20px;

    font-size:18px;

}

#offer-card h1{

    color:#22c55e;

    font-size:48px;

    margin-top:10px;

    margin-bottom:15px;

}

#joinBtn{

    background:#22c55e;

    color:white;

    border:none;

    padding:16px 40px;

    font-size:20px;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

#joinBtn:hover{

    transform:scale(1.05);

}

/* ==========================================
   SHOW OFFER
========================================== */

#offer-card.show-offer{

    opacity:1;

    visibility:visible;

    transform:translateY(0) scale(1);

}

#offer-wrapper{

    max-height: 0;

    overflow: hidden;

    transition: max-height .6s ease;

}

#offer-wrapper.show-wrapper{

    max-height: 800px;

}

@keyframes fadeInUp{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* =========================================
   Offer Card Pricing
========================================= */

.old-price {
    display: block;
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.bonus-text {
    margin: 15px 0;
    padding: 8px;
    background: #fff8e6;
    border: 1px solid #f0d26a;
    border-radius: 8px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.bonus-text strong {
    color: #d35400;
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
========================================== */

#whatsappBtn{

    position:fixed;

    bottom:30px;

    right:30px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    font-size:32px;

    text-decoration:none;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transform:scale(.8);

    transition:all .4s ease;

    z-index:999;

}

#whatsappBtn.show{

    opacity:1;

    visibility:visible;

    transform:scale(1);

}

#whatsappBtn:hover{

    transform:scale(1.1);

}

#whatsappBtn img{

    width:36px;

    height:36px;

}

/* ==========================================
   COMMENTS SECTION
========================================== */

.comments{

    margin-top:40px;

}

.comments h2{

    margin-bottom:20px;

    color:#111827;

}

#commentForm{

    display:flex;

    flex-direction:column;

    gap:15px;

}

#commentName,
#commentText{

    width:100%;

    padding:15px;

    border:1px solid #d1d5db;

    border-radius:10px;

    font-size:16px;

    font-family:inherit;

    outline:none;

}

#commentName:focus,
#commentText:focus{

    border-color:#22c55e;

}

#commentForm button{

    align-self:flex-start;

    background:#22c55e;

    color:white;

    border:none;

    padding:14px 30px;

    border-radius:10px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

#commentForm button:hover{

    background:#16a34a;

}

#commentsList{

    margin-top:30px;

}

.comment{

    background:#f9fafb;

    border-left:4px solid #22c55e;

    padding:15px;

    margin-bottom:15px;

    border-radius:8px;

}

.comment strong{

    color:#111827;

}

.comment p{

    margin-top:8px;

    color:#374151;

    line-height:1.5;

}

/* ==========================================
   PREMIUM COUNTDOWN TIMER
========================================== */

#countdown-timer{

    display:block;

    width:130px;

    margin:18px auto 26px;

    padding: 8px 0;

    background:#f8fff9;

    border:2px solid #22c55e;

    border-radius:14px;

    color:#16a34a;

    font-size:28px;

    font-weight:700;

    letter-spacing:2px;

    text-align:center;

    box-shadow:0 8px 18px rgba(34,197,94,.12);

}

/* ==========================================
   MOBILE RESPONSIVENESS
========================================== */

@media (max-width:768px){

    .container{
        padding:0;
    }

    .header{
        font-size:22px;
        padding:16px;
        margin:10px 10px 8px;
        border-radius:10px;
    }

    .video-box{
        margin:0;
        padding:0;
        border-radius:0;
        box-shadow:none;
        overflow:hidden;
    }

    .webinar-wrapper{
        width:100%;
        margin:0 auto;
    }

    #offer-card{

    margin:15px auto 0;

}

    .video-container{
        border-radius:0;
    }

    .comments,
    #offer-wrapper{
        margin-left:10px;
        margin-right:10px;
    }

    #offer-card{

    width:95%;

    padding:20px;

}

#offer-card h2{

    font-size:18px;

    margin-bottom:8px;

}

#offer-card p{

    font-size:15px;

    margin-bottom:10px;

}

#offer-card h1{

    font-size:38px;

    margin:5px 0;

}

.old-price{

    font-size:16px;

}

.bonus-text{

    padding:10px;

    margin:10px 0;

    font-size:14px;

    line-height:1.4;

}

#offer-countdown{

    margin-top:22px;

    text-align:center;

    font-size:18px;

    font-weight:500;

    color:#6b7280;

    letter-spacing:.4px;

}

#joinBtn{

    width:100%;

    padding:14px;

    font-size:18px;

}

#whatsappBtn{
    bottom:170px;
    right:12px;
    width:56px;
    height:56px;
    z-index:10001;
}

#whatsappBtn img{
    width:30px;
    height:30px;
}

#welcome-screen{

    justify-content:center;

    align-items:center;

    padding:0 18px;

}

.welcome-content{

    width:100%;

    max-width:380px;

    margin:-55px auto 0;

    text-align:center;

}

.welcome-content h1{
    font-size:34px;
    line-height:1.1;
    margin-bottom:18px;
}

.welcome-content p{
    width:90%;
    max-width:340px;
    margin:0 auto 30px;
    text-align:left;
    font-size:16px;
    line-height:1.7;
}

#beginBtn{
    width:100%;
    max-width:360px;
    font-size:18px;
    padding:16px 18px;
    white-space:normal;
}

}

/* ==========================================
   EASY AI HUB INVITATION
========================================== */

#easyAiHubInvitation{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

    background:rgba(0,0,0,.72);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index:11000;

}

#easyAiHubInvitation.show{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}

.easy-ai-hub-card{

    position:relative;

    width:100%;

    max-width:520px;

    padding:30px 28px;

    background:
        linear-gradient(
            145deg,
            #111827 0%,
            #0f172a 55%,
            #000000 100%
        );

    border:2px solid #d4af37;

    border-radius:22px;

    text-align:center;

    box-shadow:
        0 25px 80px rgba(0,0,0,.55),
        0 0 0 1px rgba(212,175,55,.12);

    transform:translateY(20px) scale(.96);

    transition:transform .35s ease;

}

#easyAiHubInvitation.show
.easy-ai-hub-card{

    transform:translateY(0) scale(1);

}

.easy-ai-hub-logo{

    display:block;

    width:110px;

    height:110px;

    object-fit:cover;

    margin:0 auto 20px;

    border-radius:50%;

    border:3px solid #d4af37;

    box-shadow:
        0 10px 30px rgba(0,0,0,.35);

}

.easy-ai-hub-card h2{

    margin-bottom:16px;

    color:#ffffff;

    font-size:30px;

    line-height:1.2;

}

.easy-ai-hub-card p{

    margin:0 auto 16px;

    max-width:440px;

    color:#d7dbe6;

    font-size:17px;

    line-height:1.65;

}

#easyAiHubBtn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:100%;

    max-width:390px;

    margin-top:10px;

    padding:16px 24px;

    background:
        linear-gradient(
            180deg,
            #22c55e 0%,
            #16a34a 100%
        );

    color:#ffffff;

    text-decoration:none;

    font-size:19px;

    font-weight:700;

    border-radius:12px;

    box-shadow:
        0 10px 24px rgba(22,163,74,.28);

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}

#easyAiHubBtn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 14px 30px rgba(22,163,74,.35);

}

#closeEasyAiHub{

    position:absolute;

    top:12px;

    right:14px;

    width:40px;

    height:40px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    font-size:28px;

    line-height:1;

    cursor:pointer;

}

#closeEasyAiHub:hover{

    background:rgba(255,255,255,.18);

}


/* ==========================================
   EASY AI HUB - MOBILE
========================================== */

@media (max-width:768px){

    #easyAiHubInvitation{

        padding:16px;

    }

    .easy-ai-hub-card{

        max-width:420px;

        padding:26px 20px 22px;

        border-radius:20px;

    }

    .easy-ai-hub-logo{

        width:88px;

        height:88px;

        margin-bottom:16px;

    }

    .easy-ai-hub-card h2{

        font-size:24px;

    }

    .easy-ai-hub-card p{

        font-size:15px;

        line-height:1.55;

    }

    #easyAiHubBtn{

        font-size:17px;

        padding:15px 18px;

    }

}

/* ==========================================
   MOBILE VIEWING TIP
   ========================================== */

#mobile-view-tip {
    display: none;
}


/* ==========================================
   MOBILE VIEWING TIP - MOBILE ONLY
   ========================================== */

@media (max-width: 768px) {

    #mobile-view-tip {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 14px;

        width: calc(100% - 20px);

        margin: 10px auto 8px;

        padding: 10px 12px;

        background: #f8fafc;

        border: 1px solid #e5e7eb;

        border-radius: 10px;

        box-shadow: 0 2px 8px rgba(0,0,0,.06);

    }

    .mobile-view-tip-text {

        display: flex;

        flex-direction: column;

        justify-content: center;

        text-align: left;

        line-height: 1.25;

    }

    .mobile-view-tip-text strong {

        color: #111827;

        font-size: 13px;

        font-weight: 700;

    }

    .mobile-view-tip-text span {

        color: #6b7280;

        font-size: 12px;

        margin-top: 2px;

    }

    .phone-rotation-guide {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 7px;

        flex-shrink: 0;

    }

    .guide-phone {

        position: relative;

        background: #111827;

        border: 2px solid #374151;

        border-radius: 6px;

        box-shadow: 0 2px 5px rgba(0,0,0,.16);

    }

    .guide-phone-portrait {

        width: 20px;

        height: 36px;

    }

    .guide-phone-landscape {

        width: 36px;

        height: 20px;

    }

    .guide-phone-screen {

        position: absolute;

        inset: 3px;

        background: #f3f4f6;

        border-radius: 3px;

    }

    .guide-rotate-arrow {

        color: #22c55e;

        font-size: 18px;

        font-weight: 700;

        line-height: 1;

    }

}

/* ==========================================
   COPYRIGHT FOOTER
   ========================================== */

.site-footer {
    margin-top: 30px;
    padding: 18px 15px;
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    background: transparent;
}

@media (max-width: 768px) {

    .site-footer {
        margin-top: 20px;
        padding: 15px 12px;
        font-size: 12px;
    }

}