@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --bg-dark: #0A0A0A;
    --accent-primary: #E5097F;
    --accent-secondary: #5E17EB;
    --text-white: #FFFFFF;
    --text-gray: #ABABAB;
    --gradient-pink: linear-gradient(45deg, #E5097F, #5E17EB);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 9, 127, 0.1);
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-tickets {
    background: var(--gradient-pink);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(229, 9, 127, 0.4);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.btn-tickets:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(229, 9, 127, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(229, 9, 127, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(229, 9, 127, 0.7);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(229, 9, 127, 0.15), transparent 70%), var(--bg-dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.2), transparent);
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-primary {
    background: var(--gradient-pink) !important;
    box-shadow: 0 10px 40px rgba(229, 9, 127, 0.4);
}

.btn-secondary {
    background: transparent !important;
    border: 2px solid var(--accent-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--gradient-pink) !important;
    border-color: transparent;
}

.stats-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 20px;
    border-top: 1px solid rgba(229, 9, 127, 0.1);
    border-bottom: 1px solid rgba(229, 9, 127, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: -30px;
    margin-bottom: 60px;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card-home {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid rgba(229, 9, 127, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card-home:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(229, 9, 127, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: grayscale(0.3);
}

.service-card-home h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card-home p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-secondary);
}

.events-preview {
    background: radial-gradient(circle at 30% 50%, rgba(229, 9, 127, 0.08), transparent), var(--bg-dark);
    padding: 100px 20px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 9, 127, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.event-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(229, 9, 127, 0.3);
    border-color: var(--accent-primary);
}

.event-date-badge {
    background: var(--gradient-pink);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
}

.date-day {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.event-location {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.event-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-event {
    background: transparent;
    border: 2px solid var(--accent-primary);
    padding: 10px 25px;
}

.btn-event:hover {
    background: var(--gradient-pink);
    border-color: transparent;
}

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

.hero-small {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(229, 9, 127, 0.15), transparent), var(--bg-dark);
    border-bottom: 1px solid rgba(229, 9, 127, 0.1);
}

.hero-small h1 {
    font-size: 3rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section {
    padding: 100px 20px;
    position: relative;
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(229, 9, 127, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(229, 9, 127, 0.3);
}

.card:hover::before {
    opacity: 0.05;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.btn {
    background: var(--gradient-pink);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 9, 127, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 9, 127, 0.5);
}

.btn-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-secondary);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gradient-pink);
    border-color: transparent;
    color: white;
}

form div,
.form-group {
    margin-bottom: 25px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-white);
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(229, 9, 127, 0.2);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(229, 9, 127, 0.2);
}

form textarea {
    min-height: 180px;
    resize: vertical;
}

.alert {
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-color: #10B981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border-color: #EF4444;
}

footer {
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(229, 9, 127, 0.1);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-pink);
    transform: translateY(-3px);
}

.text-center {
    text-align: center;
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(229, 9, 127, 0.1);
}

.cta-section h2 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }
}
