:root {
    --purple-primary: #6403C9;
    --black-primary: #070411;
    --pink-primary: #E3DCEB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tektur', sans-serif;
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: var(--pink-primary);
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    background: rgba(227, 220, 235, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(227, 220, 235, 0.2);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.text-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: drop-shadow(0 0 20px rgba(227, 220, 235, 0.3));
}

main {
    width: 100%;
    max-width: 1200px;
}

footer {
    width: 100%;
}

.logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
}

.main-logo {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    filter: drop-shadow(0 0 30px rgba(227, 220, 235, 0.4));
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(227, 220, 235, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(227, 220, 235, 0.6));
    }
}

.main-logo {
    animation: pulse 4s ease-in-out infinite;
}

.seo-content {
    text-align: center;
    margin-top: 2rem;
    max-width: 600px;
    padding: 0 1rem;
}

.tagline {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--pink-primary);
    font-weight: 500;
}

.subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(227, 220, 235, 0.8);
    font-weight: 400;
}

.social-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    border-radius: 16px;
    background: rgba(227, 220, 235, 0.08);
    border: 1px solid rgba(227, 220, 235, 0.15);
    transition: all 0.2s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    padding: 0 1rem;
    gap: 0.75rem;
}

.social-link:hover {
    background: rgba(227, 220, 235, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 220, 235, 0.2);
    border-color: rgba(227, 220, 235, 0.3);
}

.social-link:focus {
    outline: 2px solid var(--pink-primary);
    outline-offset: 2px;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--pink-primary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.social-link:hover .social-icon {
    transform: scale(1.05);
}

.social-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pink-primary);
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .container {
        padding: 2rem;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .text-logo {
        max-height: 60px;
    }
    
    .main-logo {
        max-height: 140px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .social-icons {
        gap: 0.6rem;
        max-width: 100%;
    }
    
    .social-link {
        height: 48px;
        padding: 0 0.8rem;
        gap: 0.6rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .social-text {
        font-size: 0.8rem;
    }
}