:root{
    --purple:#6f2cff;
    --purple-light:#9d73ff;
    --dark:#050505;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Arial,sans-serif;
    background:url('images/cwcbackground.jpeg') center center fixed;
    background-size:cover;
    color:white;
}

.overlay{
    min-height:100vh;
    background:
    linear-gradient(
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.95)
    );
}

/* NAVIGATION */

nav{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(111,44,255,0.4);
}

nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    padding:20px;
}

nav a{
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:600;
    letter-spacing:1px;
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--purple);
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    min-height:90vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

/* CWC TITLE — matching logo style */
.cwc-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    text-transform:uppercase;
    letter-spacing:4px;
    text-shadow:
        0 0 10px rgba(255,255,255,0.3),
        0 0 25px rgba(111,44,255,0.7);
    margin-bottom: 12px;
}

/* SLOGAN — with smooth pulse animation */
.slogan {
    font-size: 1.8rem;
    color: var(--purple-light);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(157, 115, 255, 0.8);
    margin-bottom: 25px !important;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

/* Animation keyframes */
@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(157, 115, 255, 0.6), 0 0 20px rgba(111, 44, 255, 0.4);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(157, 115, 255, 1), 0 0 30px rgba(111, 44, 255, 0.8), 0 0 40px rgba(111, 44, 255, 0.5);
        transform: scale(1.05);
    }
    100% {
        text-shadow: 0 0 10px rgba(157, 115, 255, 0.6), 0 0 20px rgba(111, 44, 255, 0.4);
        transform: scale(1);
    }
}

.hero p{
    margin-top:20px;
    max-width:800px;
    font-size:1.3rem;
    color:#ddd;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.cta-btn{
    text-decoration:none;
    color:white;
    padding:15px 30px;
    border-radius:50px;
    font-weight:bold;

    background:
    linear-gradient(
        135deg,
        var(--purple),
        var(--purple-light)
    );

    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 0 25px rgba(111,44,255,0.7);
}

/* SECTIONS */

section{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.content-box{
    background:rgba(15,15,15,0.75);
    backdrop-filter:blur(10px);

    border-radius:20px;

    border:1px solid rgba(111,44,255,0.25);

    padding:40px;

    box-shadow:
        0 0 20px rgba(111,44,255,0.15);
}

h2{
    color:var(--purple-light);
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:25px;
    text-align:center;
}

.content-box p{
    color:#ddd;
    line-height:1.8;
}

/* MERCHANDISE STYLES */
.merch-intro {
    text-align:center;
    font-size:1.2rem;
    color:#fff;
    margin-bottom:30px;
    font-weight:600;
}

.merch-items {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:25px;
    margin-bottom:40px;
}

.merch-item {
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(111,44,255,0.25);
    border-radius:15px;
    padding:25px;
    text-align:center;
    transition:0.3s;
}

.merch-item:hover {
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(111,44,255,0.3);
}

.merch-item h3 {
    color:white;
    margin-bottom:10px;
    font-family:'Orbitron', sans-serif;
}

.merch-item p {
    font-size:1.1rem;
    color:#ddd;
}

.merch-info {
    background:rgba(0,0,0,0.3);
    border-radius:12px;
    padding:25px;
    border:1px solid rgba(111,44,255,0.15);
}

.merch-info h3 {
    color:var(--purple-light);
    margin:20px 0 10px;
}

.merch-info ul {
    list-style:none;
    padding-left:0;
    margin-bottom:15px;
}

.merch-info li {
    color:#ddd;
    padding:3px 0;
}

/* SOCIAL */

.social-icons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
    margin-top:30px;
}

.social-icons a{
    width:90px;
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    text-decoration:none;
    color:white;
    font-size:38px;

    background:rgba(255,255,255,0.05);

    border:2px solid rgba(111,44,255,0.3);

    transition:0.35s;
}

.social-icons a:hover{
    transform:translateY(-8px) scale(1.1);

    box-shadow:
        0 0 20px var(--purple),
        0 0 40px rgba(111,44,255,0.5);
}

/* SPONSORS */

.sponsor-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:30px;
}

.sponsor-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(111,44,255,0.25);

    border-radius:15px;
    padding:25px;

    text-align:center;

    transition:0.3s;
}

.sponsor-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 0 20px rgba(111,44,255,0.4);
}

.sponsor-card img{
    width:100%;
    max-width:220px;
    height:140px;

    object-fit:contain;

    margin-bottom:20px;

    filter:
        drop-shadow(0 0 10px rgba(111,44,255,0.3));
}

.sponsor-card h3{
    color:white;
}

/* CONTACT */

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;

    border:none;
    border-radius:10px;

    background:rgba(255,255,255,0.08);
    color:white;

    font-size:16px;
}

input::placeholder,
textarea::placeholder{
    color:#bbb;
}

textarea{
    min-height:180px;
}

button{
    border:none;
    cursor:pointer;

    padding:15px;

    border-radius:10px;

    color:white;
    font-weight:bold;
    font-size:16px;

    background:
    linear-gradient(
        135deg,
        var(--purple),
        var(--purple-light)
    );

    transition:0.3s;
}

button:hover{
    box-shadow:
        0 0 25px rgba(111,44,255,0.6);
}

/* FOOTER */

footer{
    text-align:center;
    padding:30px;
    background:rgba(0,0,0,0.85);
    border-top:1px solid rgba(111,44,255,0.3);
}

/* MOBILE */

@media(max-width:768px){

    .cwc-title {
        font-size:3rem;
    }

    .slogan {
        font-size: 1.2rem;
    }

    .hero p{
        font-size:1.1rem;
    }

    .social-icons a{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .content-box{
        padding:25px;
    }
}