/* Red Theme Component Styles */

/* GameBox Component */
.game-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.game-card {
    background: linear-gradient(to bottom right, #4a0000, #800000);
    width: 100%;
    max-width: 360px;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    position: relative;
    border: 1px solid #ff4444;
}

.card-image {
    border-radius: 15px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #ff3b3b;
    text-shadow: 0 0 5px #ff4444;
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffcccc;
}

.card-info {
    list-style: none;
    text-align: left;
    padding: 0 10px;
}

.card-info li {
    margin: 6px 0;
    font-size: 0.9rem;
    color: #ff3b3b;
}

.card-button {
    background: linear-gradient(45deg, #ff3b3b, #b80000, #ff6666);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    display: block;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.card-button:hover {
    background: linear-gradient(45deg, #ff6666, #ff0000, #ff9999);
}

.more-games-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.more-games-button {
    display: block;
    text-align: center;
    background: linear-gradient(to bottom right, #4a0000, #800000);
    color: #ff3b3b;
    border: none;
    border-radius: 25px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 360px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    border: 1px solid #ff4444;
}

/* LoginBox Component */
.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    max-width: 322.582px;
    flex-shrink: 0;
    border-radius: 13px;
    border: 1px solid rgba(255, 68, 68, 0.6);
    background: linear-gradient(
        0deg,
        rgba(128, 0, 0, 0.75) -0.04%,
        rgba(23, 0, 0, 0.75) -0.04%,
        rgba(97, 0, 0, 0.75) 97.15%
    );
    backdrop-filter: blur(7px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.img-logo {
    max-width: 168px;
    max-height: 30px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px #ff4444);
}

.login-form {
    width: 100%;
}

.login-input-container {
    position: relative;
    margin-bottom: 1rem;
}

.login-field {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: 1px solid #ff3b3b;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
}

.login-field:focus {
    border-color: #ff6666;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.3);
}

.login-btn {
    background: linear-gradient(45deg, #ff3b3b, #b80000, #ff6666);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

/* UnfoldMid Component */
summary::-webkit-details-marker {
    display: none;
}
summary::marker {
    content: "";
}
details[open] summary img {
    transform: rotate(90deg);
}

/* Payment Component - Red Theme */
.payment {
    display: flex;
    flex-direction: column;
    padding: 24px;
    color: #ff3b3b;
    background: #1a0000;
}

.payment__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #ff3b3b;
    text-shadow: 0 0 5px #ff4444;
}

.tab {
    display: block;
    padding: 12px 24px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #4a0000;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    border: 1px solid #ff4444;
}

.tab--active {
    background: #ff3b3b;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.payment-card {
    margin-top: 24px;
    padding: 24px;
    border-radius: 12px;
    background: #4a0000;
    border-left: 6px solid #ff3b3b;
    border: 1px solid #ff4444;
}

.payment-card__heading {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ff3b3b;
}

.payment-card__body {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.payment-card__button {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff3b3b 0%, #b80000 100%);
    border: none;
    cursor: pointer;
    color: white;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.payment-card__button:hover {
    opacity: .9;
    background: linear-gradient(135deg, #ff6666 0%, #ff0000 100%);
}

/* GameBoxMini Component - Red Theme */
.card {
    background: linear-gradient(to bottom right, #4a0000, #800000);
    color: #ff3b3b;
    border: 1px solid #ff4444;
}

/* Additional specific component utilities - Red Theme */
.dot-indicator {
    width: 8px;
    height: 8px;
    background-color: #ff3b3b;
    border-radius: 50%;
    margin: 0 auto 16px;
}

/* Place bet button for certain game boxes - Red Theme */
.place-bet-btn {
    background: linear-gradient(45deg, #ff3b3b, #b80000, #ff6666);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    display: block;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

/* LiveScore Component - Red Theme */
.betting-widget {
    margin: 0 auto;
    font-family: sans-serif;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #ff3b3b;
}

.form-group select {
    width: 100%;
    padding: 0.4rem;
    border: 1px solid #ff3b3b !important;
    border-radius: 4px;
    color: #ff3b3b;
    background: rgba(0, 0, 0, 0.3);
}

.login-btn {
    height: 55px;
}
