.content-wrapper{width:100%;margin:0 auto;padding:0 2rem;box-sizing:border-box;background:var(--bg-color);position:relative;z-index:3}
.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(234, 164, 198, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(154, 246, 229, 0.05) 0%, transparent 30%);
    z-index: -1;
    pointer-events: none;
}
.content-section{padding:5rem 0;text-align:left}

.about-section{display:flex;gap:4rem;align-items:center}
.about-text{flex:1 1 55%}
.about-visual{flex:1 1 45%;height:450px;border-radius:30px;background:var(--bg-color);position:relative;overflow:hidden; display: flex; justify-content: center; align-items: center;}

.welcome-squares-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    height: 100%;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.welcome-square-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.welcome-square {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.8s ease-in-out, height 0.8s ease-in-out, border-radius 0.8s ease-in-out;
}

.welcome-square span {
    opacity: 0;
    color: white;
    font-family: var(--heading-font);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-variant-ligatures: none;
    transition: opacity 0.5s ease-in-out 0.8s;
    transform: scale(0.5);
    transition-property: opacity, transform;
}

/* Colors from loader */
.welcome-square.color1 { background-color: var(--wca-yellow); }
.welcome-square.color2 { background-color: var(--wca-cyan); }
.welcome-square.color3 { background-color: var(--wca-pink); }
.welcome-square.color4 { background-color: var(--wca-blue); }

.welcome-square.color1 span {
    color: var(--text-color);
}

/* Animation state */
.about-visual.animate .welcome-square {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translate(0, 0);
    top: 0;
    left: 0;
}

.about-visual.animate .welcome-square.color1 { transition-delay: 0s; }
.about-visual.animate .welcome-square.color2 { transition-delay: 0.1s; }
.about-visual.animate .welcome-square.color3 { transition-delay: 0.2s; }
.about-visual.animate .welcome-square.color4 { transition-delay: 0.3s; }

.about-visual.animate .welcome-square span {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1s;
}


@keyframes gradient-animation{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}

.falling-text-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.falling-text-item {
    position: absolute;
    top: -50px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.5rem);
    white-space: nowrap;
    user-select: none;
    animation: fall linear forwards;
    will-change: transform;
}

@keyframes fall {
    to {
        transform: translateY(500px); /* height of container + buffer */
    }
}

.content-section h2{font-family:var(--heading-font);font-size:clamp(2.5rem,6vw,4rem);margin-bottom:1.5rem;font-weight:normal;font-variant-ligatures:none}
.content-section p{font-size:1.1rem;line-height:1.7;max-width:700px;margin:0 0 1.5rem 0}
#summary h2,#summary p{text-align:left}
#categories h2,#categories p,#hosts h2,#how-it-works h2,#how-it-works p{text-align:center}
#how-it-works p{max-width:800px;margin-left:auto;margin-right:auto;margin-bottom:3rem}

.key-awards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.key-award-card {
    background: #f7f7f7;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.key-award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,.05);
}

.key-award-card i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.key-award-card h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

.key-award-card:nth-child(1) { border-color: var(--wca-blue); }
.key-award-card:nth-child(2) { border-color: var(--wca-cyan); }
.key-award-card:nth-child(3) { border-color: var(--wca-pink); }

.key-award-card:nth-child(1):hover { box-shadow: 0 10px 20px rgba(56, 187, 248, .1); }
.key-award-card:nth-child(2):hover { box-shadow: 0 10px 20px rgba(154, 246, 229, .2); }
.key-award-card:nth-child(3):hover { box-shadow: 0 10px 20px rgba(234, 164, 198, .15); }

.categories-table-container {
    margin-top: 3rem;
    overflow-x: auto;
}

.categories-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.categories-table th,
.categories-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.categories-table th {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.25rem;
    padding-bottom: 1rem;
    border-bottom-width: 2px;
    border-bottom-color: var(--text-color);
}

.categories-table td {
    font-size: 1rem;
}

.categories-table tbody tr:last-child td {
    border-bottom: none;
}

.categories-table tbody tr:hover {
    background-color: #f9f9f9;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-column {
    background: #fdfdfd;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e8e8e0;
}

.category-column h3 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-column li {
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.category-column li:last-child {
    border-bottom: none;
}

.category-column li:hover {
    color: var(--wca-blue);
}


.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}
.step-card{background:transparent;border:1px solid #e0e0e0;padding:2rem;border-radius:20px;text-align:center;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease}
.step-card:hover{transform:translateY(-8px);border-color:var(--wca-blue);box-shadow:0 10px 20px rgba(56, 187, 248,.1)}
.step-card i{width:48px;height:48px;stroke-width:1.5;color:var(--text-color);margin-bottom:1rem}
.step-card h3{font-family:var(--primary-font);font-weight:600;font-size:1.25rem;margin:0 0 .5rem}
.step-card p{font-size:1rem;line-height:1.6;margin:0}

.transparency-mission{margin-top:5rem}
.mission-title{font-family:var(--primary-font);font-weight:700;font-size:1.75rem;text-align:center;margin-bottom:2.5rem}
.mission-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}
.mission-card{background:transparent;border:1px solid #e0e0e0;padding:2rem;border-radius:20px;text-align:center;transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease}
.mission-card:hover{transform:translateY(-8px);border-color:var(--wca-pink);box-shadow:0 10px 20px rgba(234, 164, 198,.1)}
.mission-card i{width:48px;height:48px;stroke-width:1.5;color:var(--text-color);margin-bottom:1rem}
.mission-card h4{font-family:var(--primary-font);font-weight:600;font-size:1.25rem;margin:0 0 .5rem}
.mission-card p{font-size:1rem;line-height:1.6;margin:0;text-align:center;max-width:none}

.hosts-container{display:flex;justify-content:center;gap:3rem;flex-wrap:wrap;margin-top:3rem}
.host{display:flex;flex-direction:column;align-items:center;gap:1rem}
.host img{width:120px;height:120px;border-radius:50%;object-fit:cover;background:#f0f0f0;transition:transform .3s ease}
.host img:hover{transform:scale(1.05)}
.host-name{font-weight:600;font-size:1.1rem}

.cta-button {
    display: inline-block;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--primary-font);
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #ccc;
}

.cta-button.secondary:hover {
    background: #f5f5f5;
    border-color: #aaa;
}

.media-kit-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #eee;
    align-items: center;
}

.media-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 15px;
    background-color: #fff;
    min-height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.media-item.media-item-clickable {
    cursor: pointer;
}

.media-item.dark-bg {
    background-color: #222;
}

.media-item.wide {
    grid-column: span 2;
}

.media-item img {
    max-width: 100%;
    max-height: 100px;
    height: auto;
    object-fit: contain;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.credit-card {
    background: #f7f7f7;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.credit-card.host-credit img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: #e0e0e0;
}

.credit-info h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
}

.credit-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    max-width: none;
}

.credit-role {
    color: #555;
    font-size: 0.9rem !important;
}

.credit-note {
    font-style: italic;
    color: #777;
    font-size: 0.9rem !important;
}

.special-credit {
    background: linear-gradient(135deg, var(--wca-pink), var(--wca-blue));
    color: white;
    text-align: center;
    justify-content: center;
    grid-column: 1 / -1;
}

.special-credit .credit-info {
    text-align: center;
}

.special-credit h3 {
    font-size: 1.5rem;
}
.special-credit p {
    opacity: 0.9;
}

.nomination-timeline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.nomination-step {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    max-width: 300px;
}
.nomination-step i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.nomination-step h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 .5rem;
}
.nomination-step p {
    font-size: 1.1rem;
    margin: 0;
}


/* Timeline */
#timeline h2 {
    text-align: center;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 0;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 28px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--wca-blue);
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -8px;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-item:nth-child(2n)::after { border-color: var(--wca-cyan); }
.timeline-item:nth-child(3n)::after { border-color: var(--wca-pink); }
.timeline-item:nth-child(4n)::after { border-color: var(--wca-yellow); }

.timeline-date {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: #f9f9f9;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    position: relative;
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lightbox.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

.lightbox-close:hover {
    color: #ccc;
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    display: block;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 1rem;
    width: 100%;
    max-width: 80vw;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}