/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Header styles */
header {
    background-color: #000000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-btn {
    position: relative;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bonus-btn {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.login-btn {
    background-color: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    position: relative;
    z-index: 1;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ff0000;
    transition: width 0.3s ease;
    z-index: -1;
}

.login-btn:hover::before {
    width: 100%;
}

.login-btn:hover {
    color: white;
}

.register-btn {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.nav-btn:active {
    transform: translateY(1px);
}

/* Add shine effect to gradient buttons */
.bonus-btn, .register-btn {
    position: relative;
}

.bonus-btn::after, .register-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.bonus-btn:hover::after, .register-btn:hover::after {
    opacity: 1;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 6rem;
    gap: 4rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1rem;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-highlight {
    font-size: 1.1rem;
    color: #ffffff;
    background: rgba(255, 0, 0, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.claim-bonus-btn {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.claim-bonus-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.claim-bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.claim-bonus-btn:hover::after {
    opacity: 1;
}

.claim-bonus-btn:active {
    transform: translateY(1px);
}

/* Auth buttons container */
.auth-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

/* Hover effect for auth-buttons */
.auth-buttons a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.auth-buttons a:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Login button style */
.login-bonus-btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    letter-spacing: 1px;
}

.login-bonus-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.login-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(45deg, #0056b3, #003d80);
}

.login-bonus-btn:hover::after {
    opacity: 1;
    animation: shine 1.5s;
}

.login-bonus-btn:active {
    transform: translateY(1px);
}

.login-bonus-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3), 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Register button style */
.register-bonus-btn {
    background: linear-gradient(45deg, #28a745, #1e7e34);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    letter-spacing: 1px;
}

.register-bonus-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.register-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(45deg, #1e7e34, #155724);
}

.register-bonus-btn:hover::after {
    opacity: 1;
    animation: shine 1.5s;
}

.register-bonus-btn:active {
    transform: translateY(1px);
}

.register-bonus-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3), 0 8px 25px rgba(40, 167, 69, 0.4);
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Responsive styles for auth buttons */
@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .login-bonus-btn, .register-bonus-btn {
        width: 100%;
        min-width: 200px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .login-bonus-btn, .register-bonus-btn {
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Footer styles */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Casino Info Section */
.casino-info {
    padding: 4rem 6rem;
    background-color: #1a1a1a;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Ratings Section */
.ratings-section {
    background: linear-gradient(to right bottom, #000000, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
}

.ratings-section h3,
.casino-details h3,
.payment-details h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rating-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.rating-label {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.rating-score span {
    color: #666;
    font-size: 1.2rem;
}

.rating-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.rating-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--rating);
    background: linear-gradient(to right, #ff0000, #ff3333);
    border-radius: 3px;
}

/* Details Section */
.details-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.casino-details,
.payment-details {
    background: linear-gradient(to right bottom, #000000, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
}

.details-grid {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.detail-label {
    color: #999;
    font-size: 1rem;
}

.detail-value {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .rating-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .casino-info {
        padding: 2rem;
    }

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

    .details-section {
        grid-template-columns: 1fr;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 6rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.95));
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.welcome-container h2 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.welcome-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

/* Update responsive design for welcome section */
@media (max-width: 768px) {
    .welcome-section {
        padding: 3rem 2rem;
    }

    .welcome-container h2 {
        font-size: 2rem;
    }

    .welcome-container p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Bonuses Section */
.bonuses-section {
    padding: 4rem 6rem;
    background-color: #1a1a1a;
}

.bonuses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bonuses-section h2 {
    font-size: 2.5rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.bonuses-intro {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
}

.bonus-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-content {
    padding: 2rem;
}

.bonus-content h3 {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bonus-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive design for bonuses section */
@media (max-width: 1024px) {
    .bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bonuses-section {
        padding: 3rem 2rem;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .bonuses-section h2 {
        font-size: 2rem;
    }

    .bonus-content h3 {
        font-size: 1.3rem;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 6rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.97), rgba(26, 26, 26, 0.97));
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.cta-image {
    flex: 1;
    position: relative;
}

.cta-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cta-image:hover .cta-img {
    transform: scale(1.02);
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: #ff0000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
}

.cta-highlight {
    font-size: 1.4rem !important;
    color: #ff0000 !important;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.cta-button:hover::after {
    opacity: 1;
}

/* Responsive design for CTA section */
@media (max-width: 992px) {
    .cta-section {
        padding: 4rem 2rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 3rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-highlight {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Login Page Styles */
.login-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97), rgba(26, 26, 26, 0.97));
}

.login-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.login-box {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h2 {
    color: #ff0000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-header p {
    color: #ffffff;
    font-size: 1.1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input input {
    padding-right: 3rem; /* Make space for the eye icon */
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    z-index: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff0000;
}

.forgot-password {
    color: #ff0000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #ff3333;
    text-decoration: underline;
}

.login-submit-btn {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.login-submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.login-submit-btn:hover::after {
    opacity: 1;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    color: #ffffff;
}

.register-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: #ff3333;
    text-decoration: underline;
}

/* Responsive design for login page */
@media (max-width: 768px) {
    .login-box {
        padding: 2rem;
    }

    .login-header h2 {
        font-size: 2rem;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Register Page Styles */
.register-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97), rgba(26, 26, 26, 0.97));
}

.register-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.register-box {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.register-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.register-header h2 {
    color: #ff0000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.register-header p {
    color: #ffffff;
    font-size: 1.1rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Style for the currency select dropdown */
select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #000000;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select option {
    background: white;
    color: #000000;
    padding: 1rem;
}

select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

/* Custom checkbox styles */
.form-checkbox {
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #ffffff;
    font-size: 0.9rem;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff0000;
}

.checkbox-text {
    flex: 1;
    line-height: 1.4;
}

.terms-link {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #ff3333;
    text-decoration: underline;
}

.register-submit-btn {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.register-submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.register-submit-btn:hover::after {
    opacity: 1;
}

.register-footer {
    text-align: center;
    margin-top: 2rem;
    color: #ffffff;
}

.login-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #ff3333;
    text-decoration: underline;
}

/* Responsive design for register page */
@media (max-width: 768px) {
    .register-box {
        padding: 2rem;
    }

    .register-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checkbox-container {
        font-size: 0.85rem;
    }
}

/* Bonus Page Styles */
.bonus-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/bonus.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
}

.bonus-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-hero h1 {
    color: #ff0000;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-hero p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
}

.main-bonus-section {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
}

.bonus-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-bonus {
    display: flex;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.featured-bonus-content {
    flex: 1;
    padding: 3rem;
}

.featured-bonus-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.featured-bonus h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bonus-amount {
    color: #ff0000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bonus-extra {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bonus-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.bonus-highlights li {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bonus-item {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-item-header {
    height: 200px;
    overflow: hidden;
}

.bonus-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-item:hover .bonus-item-img {
    transform: scale(1.05);
}

.bonus-item-content {
    padding: 2rem;
}

.bonus-item h3 {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-value {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-features {
    list-style: none;
    margin: 1.5rem 0;
}

.bonus-features li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.bonus-claim-btn {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.bonus-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.bonus-terms {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.97), rgba(26, 26, 26, 0.97));
    padding: 4rem 2rem;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-container h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.terms-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.terms-item h4 {
    color: #ff0000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.terms-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.terms-footer {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
}

/* Responsive design for bonus page */
@media (max-width: 992px) {
    .featured-bonus {
        flex-direction: column;
    }

    .featured-bonus-image {
        height: 300px;
    }

    .bonus-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .bonus-hero {
        padding: 4rem 1rem;
    }

    .featured-bonus-content {
        padding: 2rem;
    }

    .featured-bonus h2 {
        font-size: 2rem;
    }

    .bonus-amount {
        font-size: 1.8rem;
    }

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