:root {
    --primary-orange: #ff6b35;
    --secondary-yellow: #f7931e;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --text-glow: 0 0 10px rgba(255, 107, 53, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)),
                url('/images/ezytank_bg.png');
    background-size: cover;
}

.hero-section {
    height: calc(100vh - 80px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.game-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: var(--text-glow);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.game-subtitle {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-yellow));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    color: white;
}

.cta-secondary {
    background: linear-gradient(45deg, #6c757d, #495057);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.cta-secondary:hover {
    box-shadow: 0 12px 35px rgba(108, 117, 125, 0.5);
}



.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-tank {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-tank:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-tank:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.floating-tank:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

.navbar {
    background: rgba(26, 26, 46, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-orange) !important;
    text-shadow: var(--text-glow);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .game-title {
        font-size: 3rem;
    }

    .game-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

footer {
    background: #95a5bc3b !important;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    height: 80px;
}

.inline-image {
    width: 30px;
    height: 30px;
}

.footer-link {
    color: var(--primary-orange);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
}

.footer-link:hover {
    color: var(--secondary-yellow);
    text-decoration-color: var(--secondary-yellow);
}