:root {
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --success-color: #28a745;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --discord-color: #5865F2;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 140px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.warranty-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-image {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.faq-image:hover {
    transform: translateY(-10px);
}

.pricing-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
    color: var(--primary-color);
}

.pricing-card .card-header {
    border-bottom: none;
    padding: 2rem 1rem;
}

.pricing-card .card-body {
    padding: 2rem;
}

.pricing-card .list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card .list-unstyled li:last-child {
    border-bottom: none;
}

.card-img-top {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0;
}

.navbar-logo {
    height: 128px;
    width: 128px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.btn-discord {
    background: linear-gradient(45deg, var(--discord-color), #7289DA);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.btn-discord:hover {
    background: linear-gradient(45deg, #7289DA, var(--discord-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
    color: white !important;
}

.discord-widget {
    margin-top: 15px;
    text-align: center;
}

.discord-widget iframe {
    max-width: 100%;
    height: 300px;
    border-radius: 8px;
}

.modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
}

.modal-footer {
    border-top: 1px solid #eee;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}

.game-carousel-section {
    background: #f8f9fa;
}

.carousel-image {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.carousel-item a {
    display: block;
    text-decoration: none;
}

.carousel-item:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    padding: 10px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .navbar-logo {
        height: 30px;
        max-width: 120px;
    }

    .carousel-image {
        height: 200px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}