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

:root {
    --primary-blue: #d6e9ff;
    --dark-blue: #2563eb;
    --accent-blue: #1d4ed8;
    --light-blue: #60a5fa;
    --sky-blue: #0ea5e9;
    --text-dark: #0f172a;
    --text-light: #f1f5f9;
    --success: #10b981;
    --warning: #ef4444;
    --shadow: rgba(37, 99, 235, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 50%, #bfdbfe 100%);
    color: var(--text-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* MARCA D'ÁGUA VERTICAL */
.watermark {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(90deg);
    font-size: 56px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.06);
    pointer-events: none;
    z-index: 1;
    user-select: none;
    letter-spacing: 8px;
    white-space: nowrap;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) rotate(90deg) translateX(0); }
    50% { transform: translateY(-50%) rotate(90deg) translateX(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}

/* CONTAINER */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeIn 0.8s ease-in;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 35px;
}

.main-title {
    font-size: 3.2em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--dark-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px var(--shadow);
    margin-bottom: 10px;
    letter-spacing: 5px;
    animation: pulse 3s ease-in-out infinite;
}

/* LOGO */
.logo-container {
    text-align: center;
    margin: 35px 0;
}

.main-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 35px var(--shadow);
    transition: transform 0.4s ease;
    animation: bounce 3s ease-in-out infinite;
}

.main-logo:hover {
    transform: scale(1.1) rotate(3deg);
}

/* CARD */
.card {
    background: white;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 12px 35px var(--shadow);
    margin: 28px 0;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.22);
}

/* UNLOCK SECTION */
.unlock-section {
    background: white;
    padding: 45px;
    border-radius: 26px;
    box-shadow: 0 16px 45px var(--shadow);
    margin: 38px 0;
    text-align: center;
    position: relative;
}

.info-text {
    color: #64748b;
    font-weight: 700;
    margin: 12px 0 28px;
    font-size: 1.05em;
}

/* BOTÕES */
.tiktok-btn,
.unlock-btn,
.code-unlock-btn,
.gamepass-btn,
.btn {
    display: inline-block;
    padding: 17px 42px;
    font-size: 1.15em;
    font-weight: 900;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 10px;
    box-shadow: 0 9px 23px rgba(0, 0, 0, 0.14);
    position: relative;
    overflow: hidden;
}

.tiktok-btn {
    background: linear-gradient(135deg, #000000, #fe2c55, #00f2ea);
    color: white;
    background-size: 200% 200%;
    animation: shimmer 4s infinite;
}

.unlock-btn {
    background: linear-gradient(135deg, var(--dark-blue), var(--sky-blue));
    color: white;
    font-size: 1.35em;
    padding: 20px 55px;
}

.unlock-btn:disabled {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    cursor: not-allowed;
    opacity: 0.7;
}

.code-unlock-btn {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    font-size: 0.85em;
    padding: 10px 25px;
    position: absolute;
    top: 18px;
    right: 18px;
}

.gamepass-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 1.25em;
}

.tiktok-btn:hover,
.unlock-btn:hover:not(:disabled),
.gamepass-btn:hover,
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.code-unlock-btn:hover {
    transform: scale(1.04);
}

.tiktok-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.6;
}

/* PROGRESS BAR */
.progress-container {
    width: 100%;
    max-width: 680px;
    margin: 38px auto;
    height: 68px;
    background: #e2e8f0;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-blue), var(--sky-blue), var(--light-blue));
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.progress-text {
    color: white;
    font-weight: 900;
    font-size: 1.75em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}

/* MODAL */
.code-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.code-modal-content {
    background: white;
    padding: 48px;
    border-radius: 26px;
    max-width: 530px;
    width: 90%;
    text-align: center;
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.35);
    animation: bounce 0.5s ease;
}

.code-input {
    width: 100%;
    padding: 20px;
    font-size: 1.55em;
    text-align: center;
    border: 3px solid var(--dark-blue);
    border-radius: 15px;
    margin: 23px 0;
    text-transform: uppercase;
    letter-spacing: 9px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.code-input:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 22px rgba(37, 99, 235, 0.35);
}

/* GAMEPASS SECTION */
.gamepass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gamepass-item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gamepass-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
}

.gamepass-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

.gamepass-name {
    font-size: 1.3em;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.gamepass-description {
    color: #64748b;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.gamepass-price {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--success);
    margin-bottom: 12px;
}

.gamepass-stock {
    font-weight: 800;
    margin-bottom: 15px;
}

.gamepass-stock.in-stock {
    color: var(--success);
}

.gamepass-stock.out-of-stock {
    color: var(--warning);
}

.gamepass-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--dark-blue), var(--sky-blue));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gamepass-btn:hover:not(:disabled) {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.gamepass-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.6;
}

/* ADMIN BUTTON */
.admin-access-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.admin-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.5);
}

/* EXECUTORES */
.executors-section {
    display: grid;
    gap: 32px;
}

.executor-card {
    background: white;
    padding: 38px;
    border-radius: 23px;
    box-shadow: 0 14px 38px var(--shadow);
    transition: all 0.3s ease;
}

.executor-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 19px 52px rgba(37, 99, 235, 0.28);
}

.executor-title {
    color: var(--dark-blue);
    font-weight: 900;
    font-size: 1.95em;
    margin-bottom: 23px;
    text-align: center;
    letter-spacing: 1.5px;
}

.executor-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.executor-btn {
    padding: 17px 38px;
    font-size: 1.15em;
    font-weight: 900;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.14);
}

.executor-btn.android {
    background: linear-gradient(135deg, #10b981, #059669);
}

.executor-btn.ios {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.executor-btn.pc {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.executor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 28px rgba(0, 0, 0, 0.22);
}

.executor-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.warning-text {
    color: var(--warning);
    font-weight: 900;
    font-size: 1.25em;
    margin: 16px 0;
    animation: bounce 1.5s ease-in-out infinite;
}

.centered {
    justify-content: center;
}

/* SCRIPTS */
.scripts-link-container {
    text-align: center;
    margin-top: 48px;
}

.scripts-btn {
    display: inline-block;
    padding: 21px 52px;
    font-size: 1.45em;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border-radius: 17px;
    text-decoration: none;
    box-shadow: 0 9px 23px rgba(99, 102, 241, 0.38);
    transition: all 0.3s ease;
}

.scripts-btn:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 14px 38px rgba(99, 102, 241, 0.48);
}

/* TIMER */
.timer-display {
    background: linear-gradient(135deg, var(--warning), #dc2626);
    color: white;
    padding: 21px 48px;
    border-radius: 17px;
    text-align: center;
    font-size: 1.65em;
    font-weight: 900;
    margin: 33px auto;
    max-width: 580px;
    box-shadow: 0 9px 23px rgba(239, 68, 68, 0.38);
    animation: pulse 2.5s infinite;
}

.timer-display.active {
    animation: pulse 2s infinite, shimmer 3s infinite;
    background-size: 200% 100%;
}

/* FOOTER */
.social-footer {
    text-align: center;
    margin-top: 68px;
    padding: 48px 23px;
    background: white;
    border-radius: 26px;
    box-shadow: 0 14px 38px var(--shadow);
}

.discord-link {
    display: inline-block;
    padding: 19px 48px;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    font-weight: 900;
    font-size: 1.35em;
    border-radius: 15px;
    text-decoration: none;
    margin-bottom: 33px;
    transition: all 0.3s ease;
    box-shadow: 0 9px 23px rgba(88, 101, 242, 0.38);
}

.discord-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 33px rgba(88, 101, 242, 0.48);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 33px 0;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 63px;
    background: linear-gradient(135deg, var(--dark-blue), var(--sky-blue));
    color: white;
    border-radius: 50%;
    font-size: 1.55em;
    transition: all 0.3s ease;
    box-shadow: 0 7px 18px var(--shadow);
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(11deg);
    box-shadow: 0 11px 28px var(--shadow);
}

.brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-top: 33px;
}

.brand-logo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    box-shadow: 0 7px 18px var(--shadow);
}

.brand-name {
    font-size: 1.95em;
    font-weight: 900;
    color: var(--dark-blue);
    letter-spacing: 2.5px;
}

/* BLUR OVERLAY (APENAS SCRIPTS) */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(28px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.45em;
    font-weight: 900;
    text-align: center;
    padding: 18px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.3em;
    }

    .main-logo {
        max-width: 140px;
    }

    .watermark {
        font-size: 44px;
        right: 12px;
    }

    .unlock-section,
    .card {
        padding: 28px 18px;
    }

    .tiktok-btn,
    .unlock-btn,
    .gamepass-btn {
        font-size: 0.95em;
        padding: 15px 32px;
        width: 100%;
        margin: 7px 0;
    }

    .code-unlock-btn {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .executor-buttons {
        flex-direction: column;
    }

    .code-modal-content {
        padding: 32px 18px;
    }

    .progress-container {
        height: 58px;
    }

    .progress-text {
        font-size: 1.35em;
    }

    .gamepass-grid {
        grid-template-columns: 1fr;
    }

    .admin-access-btn {
        bottom: 15px;
        left: 15px;
        padding: 12px 24px;
        font-size: 0.9em;
    }
}

/* PRINT PROTECTION (APENAS SCRIPTS.HTML) */
@media print {
    .scripts-page {
        filter: blur(50px) contrast(0);
        background: #000 !important;
    }
    .scripts-page .blur-overlay {
        display: flex !important;
    }
    .scripts-page * {
        visibility: hidden !important;
    }
}
