* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #808080 100%);
    position: relative;
    color: white;
}

#root {
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.title {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(2em, 8vw, 4em);
    font-weight: 700;
    background: linear-gradient(45deg, #FF0000, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.subtitle {
    position: fixed;
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(1.2em, 3vw, 1.6em);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    font-family: 'Orbitron', monospace;
    z-index: 10;
}

.title .logo {
    width: clamp(60px, 15vw, 100px);
    height: auto;
    margin-right: -10px;
    transform: scaleX(-1);
    z-index: 11;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.8));
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 140, 0, 0.4);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 140, 0, 0.6), 0 0 50px rgba(255, 69, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .title {
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: clamp(1.5em, 8vw, 2.5em);
    }
}

.buttons-container {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 30px;
    z-index: 20;
}

@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        gap: 25px;
    }
}

.panel-button {
    flex: 1;
    min-width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.4em, 4vw, 1.8em);
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-align: center;
    color: white;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.panel-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.panel-button:hover::before {
    left: 100%;
}

.panel-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.panel-web {
    border-color: #00ff88;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.panel-web:hover {
    border-color: #00ff88;
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}

.panel-panel {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.panel-panel:hover {
    border-color: #ff6b35;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.panel-discord {
    border-color: #7289da;
    background: linear-gradient(135deg, #7289da, #5b6eae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
}


.panel-discord:hover {
    border-color: #7289da;
    box-shadow: 0 12px 35px rgba(114, 137, 218, 0.6);
}

.panel-subs {
    border-color: #f7d154;
    background: linear-gradient(135deg, #f7d154, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 8px 25px rgba(247, 209, 84, 0.4);
}

.panel-subs:hover {
    border-color: #f7d154;
    box-shadow: 0 12px 35px rgba(247, 209, 84, 0.65);
}

