
    .ptc-container {
        max-width: 700px;
        margin: 50px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
    .ptc-watch-card {
        width: 100%;
        min-height: 450px; 
        
        background: #1e293b;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px; 
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        box-sizing: border-box;
    }

    /* Banner */
    .banner-placeholder {
        width: 200px; 
        height: 200px;
        background: #1e293b; 
        border: 1px dashed #334155;
        border-radius: 12px;
        display: flex; 
        align-items: center; 
        justify-content: center;
        color: #475569; 
        font-size: 12px;
        margin: 0 auto; 
        overflow: hidden; 
    }

    .ptc-progress { width: 100%; height: 10px; background: rgba(0,0,0,0.2); border-radius: 10px; overflow: hidden; }
    .ptc-bar { height: 100%; background: #10b981; width: 0%; transition: width 0.1s linear; }
    .ptc-watch-card #timer { font-size: 1.3rem; font-weight: 800; color: #f59e0b; margin: 0; }
    
    .btn-ptc-amber {
        background: #f59e0b !important; color: #000 !important;
        width: 100%; padding: 15px; border-radius: 10px; border: none; font-weight: bold;
    }


/* =========================================
   PTC WATCH 3-OSZLOPOS ELRENDEZÉS (ÁLCÁZOTT ÉS FIXÁLT)
   ========================================= */
.ptc-layout-grid {
    display: grid;
    /* FONTOS: Bepányvázzuk a két szélét (250px), a közepe kitölti a teret */
    grid-template-columns: minmax(250px, 250px) 1fr minmax(250px, 250px);
    gap: 40px;
    justify-content: center;
    align-items: start;
    margin-top: 30px;
    width: 100%;
}

.ptc-center-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ad-column HELYETT side-panel (Adblocker elől álcázva) */
.side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    min-width: 250px;
    flex-shrink: 0; /* Ne hagyja összenyomni az Adblocker! */
}

/* ptc-ad-box HELYETT sponsor-box */
.sponsor-box {
    width: 100%;
    height: 250px;
    background: rgba(15, 30, 53, 0.70);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 13px;
    font-weight: bold;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}



/* MOBIL ÉS TABLET NÉZET (1200px alatt összeugrik) */
@media (max-width: 1200px) {
    .ptc-layout-grid {
        grid-template-columns: 1fr; /* 1 oszlopos lesz */
        max-width: 700px;
        margin: 20px auto;
    }
    
    .ptc-center-col {
        order: -1; /* Mobilon a PTC kártya ugrik a legtetejére! */
    }

    .side-panel {
        flex-direction: row; /* Kisebb gépen egymás mellé is mehetnek a hirdetések */
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sponsor-box {
        width: 250px; /* Fixáljuk a méretét mobilon is */
    }
}

    .adsterra-top {
        margin:0 auto;
        width: 468px;
        height: 60px;
        overflow: hidden;
        text-align: center;
    }



/* Értesítő (Toast) stílusa - Faucet designhoz igazítva */
.ptc-mini-toast {
    position: fixed; 
    top: 80px; /* 90px-ről levéve, hogy egy magasságban legyen a faucettel */
    right: 20px; 
    z-index: 9999;
    background: #1e293b; 
    border: 1px solid #10b981; /* 2px-ről 1px-re vékonyítva */
    border-radius: 12px; 
    padding: 15px; 
    min-width: 220px; /* 260px-ről 220px-re szűkítve */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideInRight 0.5s forwards;
    transition: transform 0.5s ease-in;
}

.toast-content { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

/* Kép (Ikon) egységes méretének kényszerítése */
.toast-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.toast-text strong { 
    display: block; 
    color: #fff; 
    font-size: 14px; 
    margin-bottom: 2px;
}

.toast-text p { 
    margin: 0; 
    color: #10b981; 
    font-size: 13px; 
    font-weight: bold; 
}

@keyframes slideInRight {
    from { transform: translateX(150%); }
    to { transform: translateX(0); }
}