/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #2E4057 0%, #1a252f 50%, #0f1419 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: #FFD23F;
    text-shadow: 
        2px 2px 0px #FF6B35,
        4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tagline {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #FFD23F;
    font-weight: 400;
    text-shadow: 
        2px 2px 0px #2E4057,
        4px 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::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 ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link i:first-child {
    font-size: 1.5rem;
    width: 30px;
}

.social-link i:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Platform-specific colors */
.youtube {
    border-color: #FF0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
}

.youtube:hover {
    border-color: #FF0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.2));
}

.vinted {
    border-color: #09B1BA;
    background: linear-gradient(135deg, rgba(9, 177, 186, 0.2), rgba(9, 177, 186, 0.1));
}

.vinted:hover {
    border-color: #09B1BA;
    background: linear-gradient(135deg, rgba(9, 177, 186, 0.3), rgba(9, 177, 186, 0.2));
}

.cardmarket {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
}

.cardmarket:hover {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.2));
}

.tiktok {
    border-color: #FE2C55;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.2), rgba(254, 44, 85, 0.1));
}

.tiktok:hover {
    border-color: #FE2C55;
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.3), rgba(254, 44, 85, 0.2));
}

/* Footer */
.footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.card-float {
    position: absolute;
    width: 30px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    animation: float 20s infinite linear;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: -3s;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(74, 144, 226, 0.05));
    border-color: rgba(74, 144, 226, 0.3);
}

.card-3 {
    top: 50%;
    left: 5%;
    animation-delay: -6s;
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.15), rgba(255, 210, 63, 0.05));
    border-color: rgba(255, 210, 63, 0.3);
}

.card-4 {
    top: 70%;
    right: 5%;
    animation-delay: -9s;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
}

.card-5 {
    top: 80%;
    left: 50%;
    animation-delay: -12s;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(74, 144, 226, 0.05));
    border-color: rgba(74, 144, 226, 0.3);
}

.card-6 {
    top: 30%;
    left: 80%;
    animation-delay: -15s;
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.15), rgba(255, 210, 63, 0.05));
    border-color: rgba(255, 210, 63, 0.3);
}

.card-7 {
    top: 60%;
    left: 85%;
    animation-delay: -18s;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(74, 144, 226, 0.05));
    border-color: rgba(74, 144, 226, 0.3);
}

.card-8 {
    top: 15%;
    left: 45%;
    animation-delay: -21s;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
}

.card-9 {
    top: 85%;
    right: 15%;
    animation-delay: -24s;
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.15), rgba(255, 210, 63, 0.05));
    border-color: rgba(255, 210, 63, 0.3);
}

.card-10 {
    top: 40%;
    left: 25%;
    animation-delay: -27s;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(74, 144, 226, 0.05));
    border-color: rgba(74, 144, 226, 0.3);
}

.card-11 {
    top: 5%;
    right: 25%;
    animation-delay: -30s;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
}

.card-12 {
    top: 65%;
    left: 60%;
    animation-delay: -33s;
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.15), rgba(255, 210, 63, 0.05));
    border-color: rgba(255, 210, 63, 0.3);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .social-link {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    
    .social-link i:first-child {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 3rem 2rem;
    }
    
    .links-section {
        max-width: 350px;
        margin: 0 auto 2rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .card-float {
        animation: none;
    }
    
    .social-link {
        transition: none;
    }
    
    .logo {
        transition: none;
    }
}

/* Focus states for accessibility */
.social-link:focus {
    outline: 2px solid #FFD23F;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .social-link {
        border-width: 3px;
        background: rgba(0, 0, 0, 0.8);
    }
}
