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

:root {
    --primary-purple: #e6d9ff;
    --dark-purple: #9b59b6;
    --accent-purple: #8e44ad;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --success: #27ae60;
    --warning: #e74c3c;
    --shadow: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-purple);
    color: var(--text-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* MARCA D'ÁGUA DIAGONAL */
.watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    font-weight: bold;
    color: rgba(155, 89, 182, 0.15);
    pointer-events: none;
    z-index: 1;
    transform: rotate(-45deg);
    user-select: none;
    letter-spacing: 20px;
    white-space: nowrap;
}

/* PROTEÇÃO CONTRA PRINT - TELA BORRADA */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(50px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

@media print {
    body {
        filter: blur(50px);
        background: #000 !important;
    }
    
    .blur-overlay {
        display: flex !important;
    }
    
    * {
        visibility: hidden !important;
    }
    
    .blur-overlay::after {
        content: "⚠️ SCREENSHOT BLOQUEADO ⚠️";
        visibility: visible !important;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 48px;
        color: red;
        z-index: 99999;
    }
}

/* CONTAINER PRINCIPAL */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* CABEÇALHO */
header {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--accent-purple);
    text-shadow: 3px 3px 6px var(--shadow);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

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

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    margin-top: 20px;
    padding: 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px dashed #e74c3c;
    border-radius: 10px;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1em;
}

/* SEÇÃO DE DESBLOQUEIO */
.unlock-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    margin: 30px 0;
}

.tiktok-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    padding: 20px 40px;
    font-size: 1.5em;
    font-weight: bold;
    background: linear-gradient(135deg, #000000, #fe2c55);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(254, 44, 85, 0.4);
}

.tiktok-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.6);
}

.tiktok-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.info-text {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* BARRA DE PROGRESSO */
.progress-container {
    width: 100%;
    height: 50px;
    background: #ecf0f1;
    border-radius: 25px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-purple), var(--accent-purple));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 1s ease;
    position: relative;
}

.progress-text {
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* BOTÃO LIBERAR */
.unlock-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 18px 40px;
    font-size: 1.4em;
    font-weight: bold;
    background: linear-gradient(135deg, var(--success), #229954);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.unlock-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

.unlock-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.6);
}

.unlock-btn i {
    margin-right: 10px;
}

/* TIMER */
.timer-display {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 30px auto;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
}

.timer-display.active {
    display: block;
}

.timer-display i {
    margin-right: 15px;
    font-size: 1.2em;
}

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

/* EXECUTORES */
.executors-section {
    flex: 1;
}

.executor-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 10px 30px var(--shadow);
}

.executor-title {
    font-size: 2em;
    color: var(--accent-purple);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.warning-text {
    color: var(--warning);
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0;
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    border: 2px solid var(--warning);
}

.shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

.executor-buttons.centered {
    justify-content: center;
}

.executor-btn {
    flex: 1;
    min-width: 200px;
    padding: 18px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.executor-btn.android {
    background: linear-gradient(135deg, #3ddc84, #2db870);
}

.executor-btn.ios {
    background: linear-gradient(135deg, #555555, #000000);
}

.executor-btn.pc {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.executor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow);
}

.executor-btn i {
    font-size: 1.3em;
}

/* BOTÃO SCRIPTS */
.scripts-link-container {
    text-align: center;
    margin: 50px 0;
}

.scripts-btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.5em;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-purple), var(--dark-purple));
    color: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.scripts-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow);
}

.scripts-btn i {
    margin-right: 10px;
}

/* SCRIPTS */
.construction-notice {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.construction-notice i {
    font-size: 3em;
    margin-bottom: 15px;
}

.construction-notice h2 {
    font-size: 2em;
    margin: 15px 0;
}

.construction-notice p {
    font-size: 1.2em;
}

.scripts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.script-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.script-card.placeholder {
    opacity: 0.6;
    border: 2px dashed #95a5a6;
}

.script-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--accent-purple);
}

.script-header i {
    font-size: 1.5em;
}

.script-header h3 {
    font-size: 1.3em;
}

.script-code {
    background: #2c3e50;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
}

.script-code code {
    color: #1abc9c;
    font-size: 1em;
}

/* FOOTER */
.social-footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
}

.discord-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.6);
}

.discord-link i {
    font-size: 1.5em;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: var(--accent-purple);
    font-size: 1.5em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px var(--shadow);
}

.brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 0.9em;
    font-weight: bold;
    color: var(--accent-purple);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5em;
    }
    
    .watermark {
        font-size: 60px;
        letter-spacing: 10px;
    }
    
    .unlock-section {
        padding: 25px;
    }
    
    .tiktok-btn {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    
    .executor-buttons {
        flex-direction: column;
    }
    
    .executor-btn {
        min-width: 100%;
    }
    
    .scripts-section {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}