* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark: #0a0a0a;
    --orange: #FF6B35;
    --green: #2D8659;
    --red: #C1121F;
    --yellow: #FDB833;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6)),
        url('../images/2151535241.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--gold) 2px, var(--gold) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--gold) 2px, var(--gold) 4px);
    opacity: 0.03;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.03;
    }

    50% {
        opacity: 0.06;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.logo {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 50%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: slideDown 1s ease-out;
    letter-spacing: -2px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    animation: fadeIn 1s ease-out 0.3s both;
    font-weight: 300;
    letter-spacing: 4px;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.9s both;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Floating Elements */
.floating-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.pattern-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.pattern-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.pattern-3 {
    top: 50%;
    left: 70%;
    animation-delay: 10s;
    width: 200px;
    height: 200px;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(0, -60px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* Vision Section */
.section {
    padding: 100px 5%;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.vision-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Pillars Section */
.pillars {
    background: linear-gradient(135deg, #1a0a0a 0%, var(--dark) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.pillar-card:hover::before {
    left: 100%;
}

.pillar-card:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    height: 120px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-icon img {
    transform: scale(1.1);
}

.pillar-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Footer */
footer {
    background: #050505;
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    margin: 10px 0;
}

.social-links {
    margin: 30px 0;
}

.social-links a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--orange);
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Tickets Section */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ticket-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ticket-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ticket-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.2) 100%);
}

.ticket-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ticket-type {
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.ticket-price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: white;
}

.ticket-price span {
    font-size: 1rem;
    opacity: 0.6;
    font-weight: 400;
}

.ticket-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.ticket-features li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

.ticket-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

.btn-solid {
    background: var(--gold);
    color: var(--dark);
}

.btn-solid:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

/* Registration Section - Classic Refinement */
.registration {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
        url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    padding: 80px 5%;
}

.registration-container {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 50px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.registration-intro {
    text-align: center;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .registration-container {
        padding: 30px 20px;
    }
}

.form-group label {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
}

.submit-button {
    margin-top: 15px;
    padding: 16px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: white;
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}