* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    overflow: hidden; 
    /* Sadece dosya uzantısı webp yapıldı */
    background: url('background.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    margin-bottom: 15vh;
}

/* Logo stillerini sildim çünkü logoyu kaldırdık */

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #00d2ff; 
    text-shadow: 0 0 15px #00d2ff;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.highlight {
    color: #ff9900; 
    font-weight: bold;
    letter-spacing: 1px;
}

.glitch {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 1; text-shadow: 0 0 10px #00d2ff; }
    50% { opacity: 0.5; text-shadow: 0 0 2px #00d2ff; }
    100% { opacity: 1; text-shadow: 0 0 10px #00d2ff; }
}

.btn {
    text-decoration: none;
    background: transparent;
    border: 2px solid #00d2ff;
    color: #00d2ff;
    padding: 12px 40px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background: #00d2ff;
    color: #000;
    box-shadow: 0 0 20px #00d2ff;
}


@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    p { font-size: 1rem; }
}