@font-face {
    font-family: 'Arial Rounded MT Bold';
    src: url('../fonts/arialroundedmtbold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: url('../background.png') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    text-align: center;
    overflow-x: hidden;
    padding: 20px 0;
}

.container {
    max-width: 800px;
    padding: 20px;
    z-index: 10;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bottom-links-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 30px;
    margin-bottom: 2rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section {
    margin-bottom: 1rem;
    z-index: 10;
}

.main-title {
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    font-weight: bold;
    font-size: 8.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.title-park {
    background: linear-gradient(to right, #ffffff 0%, #87CEEB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.sigma-icon {
    height: 8.5rem;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.subtitle {
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.platform {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 3rem;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.platform:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.platform.clickable {
    cursor: pointer;
}

.platform.disabled {
    opacity: 0.7;
    cursor: default;
}

.platform.disabled:hover {
    transform: none;
    opacity: 0.7;
}

.platform-icon {
    height: 3.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.telegram-text {
    color: white;
}

.whatsapp-text {
    color: #25D366;
}

.contact {
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    text-decoration: underline;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.contact:hover {
    opacity: 0.8;
}

.legal-links {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    z-index: 10;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.legal-link:hover {
    opacity: 0.9;
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 1rem;
}

.footer {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 6rem;
    }
    
    .sigma-icon {
        height: 5rem;
    }
    
    .subtitle {
        font-size: 2.5rem;
    }
    
    .platforms {
        flex-direction: column;
        gap: 2rem;
    }
    
    .platform {
        font-size: 2.5rem;
    }
    
    .platform-icon {
        height: 3.5rem;
    }
    
    .contact {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .sigma-icon {
        height: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.6rem;
        
    }
    
    .platforms {
        margin-bottom: 3rem;
    }

     .platform-icon {
        height: 2.5rem;
    }
    
    .platform {
        font-size: 1.6rem;
    }

    .contact {
        font-size: 1.5rem;
    }
}
