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

:root {
    --primary-yellow: #e3ff53;
    --dark-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --success-green: #4caf50;
    --error-red: #f44336;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e3ff53 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    position: relative;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-icon::before {
    content: "\1F4A1";
    font-size: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-highlight {
    color: var(--white);
    background: var(--dark-gray);
    padding: 0.3rem 1rem 1rem;
    display: inline-block;
    border-radius: 8px;
    margin: 0.8rem 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 1.5rem 0;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0 1.8rem;
}

.hero-edition {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: var(--dark-gray);
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: var(--dark-gray);
    opacity: 0.6;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* Countdown Section */
.countdown-section {
    background: var(--light-gray);
}

/* Timeline Countdown */
.timeline-countdowns {
    max-width: 900px;
    margin: 1em auto 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    padding: 0 2rem 2.5rem;
    background: var(--primary-yellow);
    border-radius: 20px;
}

.countdown-panel {
    background: var(--primary-yellow);
	margin-top: 2em;
    padding: 1.6rem 1.4rem 1.4rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(45, 45, 45, 0.08);
    position: relative;
    overflow: hidden;
}

/*.countdown-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f0ff6e 100%);
}*/

.countdown-head {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 1rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    align-items: stretch;
    justify-items: stretch;
}

.countdown-box {
	font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    background: var(--white);
    border-radius: 14px;
    padding: 0.8rem 0.4rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    min-width: 0;
}

.countdown-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1;
}

.countdown-number.is-animate {
    animation: tickUp 0.35s ease;
}

.countdown-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #555555;
}

.countdown-status {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.4rem;
}

.countdown-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555555;
}

.countdown-panel.is-muted .countdown-number,
.countdown-panel.is-muted .countdown-status {
    color: #888888;
}

.countdown-panel.is-ended {
    background: var(--dark-gray);
}

.countdown-panel.is-active {
    animation: countdownPulse 2.6s ease-in-out infinite;
}

.countdown-panel.is-ended .countdown-number,
.countdown-panel.is-ended .countdown-label,
.countdown-panel.is-ended .countdown-status,
.countdown-panel.is-ended .countdown-date,
.countdown-panel.is-ended .countdown-head {
    color: var(--white);
}

/* Timeline Styles */
.timeline-container {
    /* max-width: 900px;*/
    margin: 0 auto 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
    overflow: hidden;
}

.timeline-header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f0ff6e 100%);
    padding: 2.5rem;
    text-align: center;
}

.timeline-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0;
}

.timeline {
    padding: 3rem 2rem;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--dark-gray) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.start-item .timeline-content {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f0ff6e 100%);
}

.timeline-item.start-item .timeline-event {
    font-size: 1.4rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 4px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.timeline-content {
    background: var(--light-gray);
    padding: 1.8rem 2rem;
    border-radius: 15px;
    width: calc(50% - 50px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.timeline-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

.timeline-phase {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.phase-badge {
    display: inline-block;
    background: var(--dark-gray);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.timeline-footer {
    background: var(--light-gray);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--primary-yellow);
}

.timeline-note {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.timeline-note strong {
    font-weight: 700;
    color: #000000;
}

.timeline-note a {
    color: var(--dark-gray);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.timeline-note a:hover {
    color: #000000;
}

.timeline-note em {
    font-style: italic;
}

/* Countdown Info */
.countdown-info {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f0ff6e 100%);
    padding: 0;
    border-radius: 20px;
    margin: 2rem auto 0;
    max-width: 900px;
    box-shadow: 0 8px 30px rgba(227, 255, 83, 0.4);
    border: 3px solid rgba(45, 45, 45, 0.1);
    overflow: hidden;
}

.info-icon {
    text-align: center;
    font-size: 4rem;
    padding: 2rem 0 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes tickUp {
    0% {
        transform: translateY(8px);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countdownPulse {
    0%,
    100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 0 10px 28px rgba(45, 45, 45, 0.2);
    }
}

.info-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0 0 2rem;
    padding: 0 2rem;
    line-height: 1.3;
}

.info-content {
    background: rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.info-main {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.info-main strong {
    color: #000000;
    font-weight: 700;
}

.info-highlight {
    background: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.info-highlight:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2rem;
    animation: bounce-small 1.5s ease-in-out infinite;
}

@keyframes bounce-small {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-secondary {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: center;
    margin: 2rem 0 0;
}

.info-secondary strong {
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter Form Styles */
.newsletter-form-container {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.newsletter-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #dddddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(227, 255, 83, 0.2);
}

.form-input.error {
    border-color: var(--error-red);
}

.clause-container {
    margin: 1.5rem 0;
}

.clause-toggle {
    color: var(--dark-gray);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.clause-toggle:hover {
    color: #000000;
}

.clause-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--light-gray);
    border-radius: 8px;
    margin-top: 1rem;
}

.clause-content.expanded {
    max-height: 800px;
    overflow-y: auto;
}

.clause-text {
    padding: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555555;
}

.clause-text h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.clause-text ol {
    margin-left: 1.5rem;
}

.clause-text li {
    margin-bottom: 0.7rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkbox-input {
    margin-top: 0.3rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-yellow);
}

.checkbox-input:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.checkbox-label {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: var(--dark-gray);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    background: #000000;
    transform: scale(1.02);
}

.submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recaptcha-badge {
    font-size: 0.8rem;
    color: #666666;
    text-align: center;
    margin-top: 1rem;
}

/* Infographic Section */
.infographic-section {
    background: var(--white);
}

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

.step {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Downloads Section */
.downloads-section {
    background: var(--primary-yellow);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.download-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.download-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
}

.download-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn {
    display: inline-block;
    background: var(--dark-gray);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.download-btn:hover {
    background: #000000;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.watermark-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.05rem;
    color: var(--dark-gray);
    font-weight: 600;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Promo Section */
.promo-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.promo-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px var(--shadow);
    border-left: 6px solid var(--primary-yellow);
}

.promo-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.promo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.promo-content strong {
    color: var(--dark-gray);
    font-weight: 700;
}

.promo-highlight {
    background: var(--primary-yellow);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-weight: 600;
    text-align: center;
}

/* Organizers Section */
.organizers-section {
    background: var(--white);
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-items: center;
    margin-top: 3rem;
}

.organizer-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.organizer-box:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.organizer-name {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-name img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Footer */
footer {
    background: var(--primary-yellow);
    color: var(--dark-gray);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.footer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    background: var(--dark-gray);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.footer-bottom a{
    color: rgba(0, 0, 0, 0.6);
	text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .download-card {
        padding: 2rem 1.5rem;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-edition {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .promo-content {
        padding: 2rem;
    }

    .promo-content h3 {
        font-size: 1.6rem;
    }

    .promo-content p {
        font-size: 1rem;
    }

    .newsletter-form-container {
        padding: 1.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
    }

    .timeline-header {
        padding: 2rem 1.5rem;
    }

    .timeline-icon {
        font-size: 3rem;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

    .timeline {
        padding: 2rem 1rem;
    }

    .timeline-footer {
        padding: 1.5rem;
    }

    .timeline-note {
        font-size: 0.95rem;
    }

    .countdown-info {
        margin: 1.5rem 1rem 0;
        border-radius: 15px;
    }

    .timeline-countdowns {
        margin: 0 0 2rem;
        padding: 0 1rem 2rem;
    }

    .countdown-panel {
        padding: 1.4rem 1.2rem 1.2rem;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .info-icon {
        font-size: 3rem;
        padding: 1.5rem 0 0.5rem;
    }

    .info-title {
        font-size: 1.4rem;
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-content {
        padding: 2rem 1.5rem;
    }

    .info-main {
        font-size: 1rem;
    }

    .info-highlight {
        flex-direction: column;
        padding: 1.2rem 1.5rem;
        gap: 0.5rem;
    }

    .highlight-icon {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1.1rem;
        text-align: center;
    }

    .info-secondary {
        font-size: 0.95rem;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-card {
        min-height: auto;
    }

    .download-title {
        min-height: auto;
        font-size: 1rem;
    }

    .watermark-note {
        font-size: 0.95rem;
        padding: 1.2rem 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
    }

    .hero-icon::before {
        font-size: 40px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-marker {
        left: 25px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-width: 3px;
    }

    .timeline::before {
        left: 25px;
        width: 3px;
    }

    .timeline-content {
        padding: 1.3rem 1.5rem;
    }

    .timeline-event {
        font-size: 1.05rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }

    .phase-badge {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .download-card {
        padding: 1.5rem 1rem;
    }

    .download-icon {
        font-size: 2.5rem;
    }

    .download-title {
        font-size: 0.95rem;
    }

    .download-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .watermark-note {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}
