body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

.navbar-brand {
    font-size: 1.6rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    text-decoration: none !important;
}

.navbar-brand .brand-main {
    color: #dc3545;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: -2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-brand .brand-sub {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 2px 8px;
    letter-spacing: 2px;
    border-radius: 2px;
}

.hero-section {
    background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.btn-success {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    border: none;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.4);
    transition: all 0.3s ease;
    color: #fff;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.5);
    background: linear-gradient(45deg, #17a2b8, #20c997);
    color: #fff;
}

.btn-warning {
    background: linear-gradient(45deg, #fd7e14, #dc3545);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.4);
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 126, 20, 0.5);
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: #fff;
}

.game-preview {
    text-align: center;
    padding: 2rem;
}

.screenshot-carousel {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}

.screenshot-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 15px;
}

.screenshot.active {
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.dot.active {
    background: #fff;
    border-color: #20c997;
    box-shadow: 0 0 10px rgba(32, 201, 151, 0.5);
}

.game-mockup {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}

.features-section {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.content-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-content, .terms-content {
    line-height: 1.8;
}

.privacy-content h3, .terms-content h3 {
    color: #fd7e14;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #20c997;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    color: #fd7e14;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: #fff;
}

footer {
    background: linear-gradient(135deg, #212529 0%, #000000 100%) !important;
    border-top: 1px solid rgba(253, 126, 20, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}