:root {
    --brand-color: #3741A9;
    --brand-color-light: #4751c0;
    --brand-color-dark: #2c3487;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --bg-light: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

/* Disable copy-paste */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f0 100%);
    min-height: 100vh;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
/* Security measures */
*::selection {
    background: transparent;
    color: inherit;
}

*::-moz-selection {
    background: transparent;
    color: inherit;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
} 
.container {
    max-width: 800px;
    padding: 0 20px;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.header {
    position: relative;
    padding-top: 0;
    margin-bottom: 2.2rem !important;
}

.logo {
    max-width: 160px;
    height: auto;
    background-color: white;
    padding: 12px 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 4px 15px rgba(55, 65, 169, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(2px);
}

.header h1 {
    color: var(--brand-color);
    font-weight: 800;
    margin: 1.5rem 0 1rem;
    font-size: 2.8rem;
}

.header .lead {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brand-color-light);
    border-color: var(--brand-color-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 65, 169, 0.2);
}

.timer {
    font-size: 1.3rem;
    color: var(--brand-color);
    font-weight: bold;
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.timer.warning {
    color: var(--danger-color);
    animation: pulse 1s infinite;
}

.option-btn {
    width: 100%;
    margin: 10px 0;
    padding: 16px 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    background-color: white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.option-btn:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    border-color: var(--brand-color);
}

.option-btn.selected {
    background-color: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.result-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-color-light) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(55, 65, 169, 0.2);
    position: relative;
    overflow: hidden;
}

.result-circle::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    transform: rotate(-45deg);
    top: -40%;
    left: -40%;
}

.result-circle h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 800;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.result-circle p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.result-details {
    font-size: 1.2rem;
    margin-top: 2rem;
    color: var(--text-secondary);
}

#question-text {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.image-question img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    min-width: 150px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    margin: 0;
    color: var(--text-secondary);
    font-weight: 500;
}

.question-info small {
    font-size: 0.9rem;
    opacity: 0.7;
}

.result-stat {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.result-stat i {
    font-size: 1.5rem;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
}

.result-stat p {
    margin: 0;
    font-weight: 500;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 30px;
}

.logo-link:hover .logo {
    transform: translateY(2px);
}

.share-btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    color: white;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.facebook-btn {
    background: var(--brand-color);
    background: linear-gradient(135deg, #1877F2 0%, #0d5cc7 100%);
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #0d5cc7 0%, #064490 100%);
}

@media (max-width: 768px) {
    .container {
        padding-top: 0px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .logo-link {
        margin-bottom: -15px;
    }
    .card-body {
        padding: 1.1rem;
    }
    
    .result-circle {
        width: 150px;
        height: 150px;
    }
    
    .result-circle h1 {
        font-size: 3rem;
    }
    
    #question-text {
        font-size: 1.3rem;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        min-width: auto;
    }
    
    .result-stat {
        padding: 0.8rem;
    }
    
    .result-stat i {
        font-size: 1.2rem;
    }

    .share-btn {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 1rem;
    }
} 