:root {
    --bg-gradient-1: #0f0c29;
    --bg-gradient-2: #302b63;
    --bg-gradient-3: #24243e;
    --accent-1: #FF3CAC;
    --accent-2: #784BA0;
    --accent-3: #2B86C5;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
    --card-bg: rgba(22, 28, 36, 0.85);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s ease;
    --shadow-neon: 0 0 15px rgba(255, 60, 172, 0.5);
    --shadow-glow: 0 0 20px rgba(43, 134, 197, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2), var(--bg-gradient-3));
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.audition-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.audition-hero-content {
    text-align: center;
    padding: 6rem 1rem 2rem;
}

.audition-hero-content h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-description {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0 1rem;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem 3rem;
}

.container1,
.container2 {
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--transition);
}

.card:hover {
    background: var(--card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.card i {
    font-size: 1.2rem;
    color: var(--accent-3);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-title {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Social Section */
.social {
    display: flex;
    gap: 0.8rem;
    margin: 1rem 0 2rem;
}

.social a {
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social a:hover {
    background: linear-gradient(145deg, var(--accent-1), var(--accent-3));
    box-shadow: var(--shadow-neon), var(--shadow-glow);
    transform: translateY(-2px);
    border-color: transparent;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: none;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .audition-hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .audition-hero-content h1 {
        font-size: 3rem;
    }

    .page-description {
        font-size: 1.1rem;
    }

    .main {
        padding: 0 1.5rem 4rem;
        flex-direction: row;
    }

    .container1, .container2 {
        flex: 1;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .map iframe {
        height: 350px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .audition-hero-content {
        padding: 8rem 2rem 3rem;
    }

    .audition-hero-content h1 {
        font-size: 3.5rem;
    }

    .main {
        padding: 0 2rem 4rem;
    }

    .map iframe {
        height: 400px;
    }
}