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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0f0a, #2c1810, #8B4513);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: rgba(139, 69, 19, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(160, 82, 45, 0.5);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #F5DEB3, #DEB887);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.doors-container {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.door-button {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.door {
    width: 200px;
    height: 150px;
    perspective: 1000px;
}

.door-frame {
    width: 100%;
    height: 100%;
    background: #654321;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.door-panel {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
}

.amazon-door {
    background: linear-gradient(45deg, #FF9900, #FF7700);
}

.apple-door {
    background: linear-gradient(45deg, #007AFF, #0051D5);
}

.tidal-door {
    background: linear-gradient(45deg, #00FFFF, #00CCCC);
}

.door-handle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.door-text {
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.door-logo {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.door-logo-image {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.spotify-logo {
    color: #1DB954;
}

.amazon-logo {
    color: #FF9900;
}

.apple-logo {
    color: #007AFF;
}

.tidal-logo {
    color: #00FFFF;
}

.door-button:hover .door-panel {
    transform: rotateY(-15deg);
    transform-origin: left;
    box-shadow: 
        inset 2px 2px 5px rgba(0,0,0,0.2),
        5px 0 10px rgba(0,0,0,0.3);
}

.door-button:hover {
    transform: translateY(-2px);
}

.vinyl-record {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-disc {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #1a1a1a, #333);
    border-radius: 50%;
    position: relative;
    animation: spin 3s linear infinite;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.5),
        0 4px 8px rgba(0,0,0,0.3);
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    border: 1px solid #F5DEB3;
}

.vinyl-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.footer {
    margin-top: 40px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* App Footer Styles */
.app-footer {
    margin-top: 60px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.app-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.5) 20%, 
        rgba(255, 215, 0, 0.8) 50%, 
        rgba(255, 215, 0, 0.5) 80%, 
        transparent 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.gitlab-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.gitlab-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.gitlab-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .app-footer {
        margin-top: 40px;
        padding: 20px 15px;
    }
    
    .footer-content p {
        font-size: 0.85rem;
    }
}