﻿body {
    background: #08060b;
    min-height: 100vh;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*#header-mid, #header-top {
    display: none;
}*/
.TriviaHeaderbg img {
    margin-top: 0px !important;
}

.TriviaHeaderbg img {
    width: 100%;
    object-fit: cover;
    position: relative;
 
}

.header-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.verified-number {
    font-size: 18px;
   text-align:center;
}

.tournaments-section {
    margin-top: 20px;
}

.tournament-title {
    color: #8dc63f;
    font-size: 18px;
    margin-bottom: 10px;
}

.tournament-item {
    color: #8dc63f;
    font-size: 14px;
    margin-bottom: 8px;
}

.question-card {
    background: #0b0b0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

    .question-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
    }

.question-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFF;
}

.question-text {
    font-size: 15px;
    margin-bottom: 20px;
    color: #f1faee;
}

.answers-grid {
font-size:14px;
    display: grid;
 
    gap: 15px;
}

.answer-option {
    background: #111113;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .answer-option:hover {
        background: #2e0726;
        transform: translateX(5px);
    }

    .answer-option.selected {
        background: #2e0726;
    }

        .answer-option.selected::after {
            content: '✓';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            color: #8b458b;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

.submit-btn {
    background: #8dc63f;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 15px 60px;
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        transform: translateY(-2px); 
    }

#stf-msisdnText, #ltf-otpText {
    color: #000 !important;
}
  #ltf-otpText {
    color: #000 !important;
}
.error-message {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

    .error-message.show {
        display: block;
        animation: shake 0.5s;
    }

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.question-card.error {
    border-color: #dc3545;
    animation: pulse 1s;
}

@keyframes pulse {
    0%, 100% {
        border-color: rgba(220, 53, 69, 0.5);
    }

    50% {
        border-color: #dc3545;
    }
}
