/* Fear City Cycles - Gateway Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

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

body {
    font-family: 'Orbitron', monospace;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
}

.gateway-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #000000, #1a1a1a);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/dark-texture.jpg') repeat;
    opacity: 0.3;
    z-index: 1;
}

.logo-container {
    position: absolute;
    top: 50px;
    z-index: 3;
}

.main-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px #8B0000);
}

.gateway-content {
    text-align: center;
    z-index: 3;
    max-width: 600px;
    padding: 0 20px;
}

.gateway-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gateway-subtitle {
    font-size: 1.5rem;
    color: #8B0000;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 2px;
}

.warning-text {
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

.warning-text p {
    margin-bottom: 10px;
}

.enter-button {
    background: linear-gradient(45deg, #8B0000, #cc0000);
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    font-family: 'Orbitron', monospace;
}

.enter-button:hover {
    background: linear-gradient(45deg, #cc0000, #8B0000);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.7);
}

.button-skull {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.footer-warning {
    position: absolute;
    bottom: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    z-index: 3;
    padding: 0 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gateway-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .gateway-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .warning-text {
        font-size: 1rem;
    }

    .enter-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }

    .main-logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .gateway-title {
        font-size: 2rem;
    }

    .enter-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}