/* Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-color: #000;
}

.splash-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Hintergrundbild mit Zoom-Effekt */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Assets/Trumpliii.png'); /* Trump Solana Bild als Hintergrund */
    background-size: contain; /* Ändert die Skalierung von 'cover' auf 'contain' */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    opacity: 0.95;
    animation: zoomEffect 30s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05); /* Reduziert den Zoom-Effekt um Abschneidungen zu vermeiden */
    }
}

/* Dunkler Overlay für bessere Lesbarkeit */
.splash-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Inhalt zentrieren */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

/* Textstile */
.text-container {
    margin-bottom: 50px;
}

.restricted-text {
    color: #e2c675;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.main-title {
    color: #e2c675;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Button-Stil */
.confirm-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f2a, #0d3516);
    color: #00ff66;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 102, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(0, 255, 102, 0.5);
}

.confirm-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(0, 255, 102, 0.1), transparent, rgba(0, 255, 102, 0.1));
    z-index: -1;
    animation: pulse 2s infinite;
}

.confirm-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .restricted-text {
        font-size: 18px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .confirm-button {
        padding: 15px 30px;
        font-size: 16px;
    }
} 