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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0b0c09 0%, #1a1b17 50%, #0b0c09 100%);
    min-height: 100vh;
    color: #faecdd;
    overflow-x: hidden;
}

/* Background pattern for street aesthetic */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 153, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(250, 236, 221, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    margin-bottom: 20px;
    position: relative;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(255, 153, 182, 0.3));
    transition: transform 0.3s ease;
}

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

.studio-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #faecdd;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.9rem;
    color: #ff99b6;
    font-weight: 300;
    opacity: 0.9;
    font-style: italic;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(250, 236, 221, 0.1);
    border: 2px solid rgba(255, 153, 182, 0.3);
    border-radius: 16px;
    text-decoration: none;
    color: #faecdd;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 182, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.link-button:hover {
    transform: translateY(-2px);
    border-color: #ff99b6;
    background: rgba(255, 153, 182, 0.15);
    box-shadow: 0 8px 25px rgba(255, 153, 182, 0.2);
}

.link-button:active {
    transform: translateY(0);
}

.link-button i:first-child {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.link-button span {
    flex: 1;
    text-align: left;
    margin-left: 16px;
}

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

/* Specific button colors */
.phone:hover {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.email:hover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.website:hover {
    border-color: #FF9800;
    background: rgba(255, 152, 0, 0.1);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.location:hover {
    border-color: #F44336;
    background: rgba(244, 67, 54, 0.1);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.2);
}

.footer {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(250, 236, 221, 0.6);
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-button {
    animation: fadeInUp 0.6s ease-out forwards;
}

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }
.link-button:nth-child(5) { animation-delay: 0.5s; }

/* Mobile optimizations */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
    
    .studio-name {
        font-size: 1.8rem;
    }
    
    .link-button {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .logo {
        width: 100px;
    }
}

/* Landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .container {
        justify-content: flex-start;
        padding-top: 20px;
    }
    
    .header {
        margin-bottom: 20px;
    }
    
    .logo {
        width: 80px;
    }
    
    .studio-name {
        font-size: 1.6rem;
    }
    
    .links-container {
        gap: 12px;
    }
    
    .link-button {
        padding: 14px 20px;
    }
}