* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    height: 100dvh; /* Mobil için dinamik viewport height */
    perspective: 1000px;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform-style: preserve-3d;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh; /* Mobil için dinamik viewport height */
    text-align: center;
    padding: 20px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    color: #ff0000;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 2px rgba(255, 0, 0, 0.5);
    white-space: nowrap;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.3));
}

.studios {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: 12px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    padding: 0 15px;
    width: 100%;
    max-width: 500px;
}

.social-btn {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-btn:hover {
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 8px 40px rgba(255, 0, 0, 0.15),
                inset 0 0 0 1px rgba(255, 0, 0, 0.2);
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover i {
    transform: scale(1.15);
}

.footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    letter-spacing: 1px;
    padding: 0 10px;
}

.footer p {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .content {
        padding: 15px;
    }

    .social-links {
        gap: 8px;
        margin-top: 1.5rem;
        padding: 0;
        max-width: none;
        width: auto;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .title {
        font-weight: 900;
        letter-spacing: 1px;
        margin-bottom: 0.2rem;
        -webkit-text-stroke: 2px rgba(255, 0, 0, 0.5);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    }

    .studios {
        letter-spacing: 8px;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .footer {
        bottom: 10px;
        font-size: 0.65rem;
    }

    .footer p {
        padding: 8px 12px;
        max-width: 90%;
        margin: 0 auto;
    }
} 