:root {
    --gap: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #c6c6c6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 20vw;
    transition: transform 0.3s ease;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.download-btn {
    background: #222222;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 34, 34, 0.15);
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.download-btn:hover {
    background: #181818;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 34, 34, 0.25);
}

.download-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .logo {
        max-width: 90vw;
        max-height: 30vw;
        width: 100%;
        height: auto;
    }
    
    .download-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
}

