/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: url('photo_2025-12-07_01-49-50.jpg') center / cover;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    padding: 50px 20px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.menu {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.menu-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.menu-link .icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.menu-link .text {
    font-weight: bold;
    font-size: 0.9rem;
}

header h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    margin: 0;
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
}

header p {
    font-size: 1.2rem;
    margin: 10px 0 0 0;
    opacity: 0.9;
}

header .header-description {
    font-size: 1rem;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.8;
}

header .buy-button {
    margin: 20px auto 0;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

header .buy-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* Social Links */
.social-links {
    background: url('photo_2025-12-07_01-50-00.jpg') center / cover;
    height: 12vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.social-links h2 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.link .icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.link .text {
    font-weight: bold;
}



/* Responsive Design */
@media (max-width: 768px) {
    .links-container {
        flex-direction: column;
        align-items: center;
    }

    .link {
        width: 200px;
    }

    header h1 {
        font-size: 1rem;
    }

    .social-links h2 {
        font-size: 1.5rem;
    }

    .link:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.3);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* JS-related classes */
.fade-in {
    opacity: 0;
}

.visible {
    opacity: 1 !important;
}

.clicked {
    transform: scale(0.95);
    filter: brightness(1.2);
}

.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}
