:root {
    --primary: #9a0000;
    --secondary: #af996c;
    --light: #e4ddcb;
    --dark: #666666;
    --bg: #121212;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    background: linear-gradient(45deg, #121212, #1a1a1a, #2c1e1e, #121212);
    background-size: 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Custom Cursor */
html {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(154, 0, 0, 0.3);
    border: 2px solid #9a0000;
    box-shadow: 0 0 10px #9a0000, 0 0 20px #9a0000, 0 0 30px rgba(154, 0, 0, 0.5);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: screen;
}

.custom-cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(154, 0, 0, 0.7);
    pointer-events: none;
    z-index: 9998 ;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
}

.custom-cursor.active {
    width: 40px;
    height: 40px;
    background: rgba(154, 0, 0, 0.2);
}

.custom-cursor.click {
    animation: cursorClick 0.5s ease;
}

@keyframes cursorClick {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(0.7); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--secondary);
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(175, 153, 108, 0.7);
}

.preloader-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(175, 153, 108, 0.2);
    transform: translateY(-100%);
    animation: slideDown 1s 1.5s forwards;
}

@keyframes slideDown {
    to { transform: translateY(0); }
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo-container:hover .logo-image {
    animation: pulse 1.5s infinite;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    filter: drop-shadow(0 0 8px rgba(175, 153, 108, 0.5));
}

.technologia-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
    margin-left: 3px;
    margin-right: 20px;
}

.technologia-text .year {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: -2px;
    letter-spacing: 2px;
}

.technologia-text:hover .year {
    color: var(--primary);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.technologia-text:hover {
    color: var(--primary);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Coordinator Info */
.coordinator-info {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.5rem;
    color: var(--secondary);
    text-align: center;
    margin-top: 20px;
    max-width: 800px;
    padding: 5px 8px;
    background: rgba(18, 18, 18, 0.5);
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.coordinator-info:hover {
    color: var(--primary);
    background: rgba(18, 18, 18, 0.7);
    transform: scale(1.02);
}

/* Back to Home Button */
.back-home {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.3s ease, background 0.3s ease;
}

.back-home:hover {
    transform: scale(1.2);
    background: var(--secondary);
}

/* Floating Calendar Button */
.calendar-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    width: 80px;
}

.calendar-button::before {
    content: ""; 
    display: inline-block;
    width: 24px;
    height: 24px; 
    background-image: url('c.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.calendar-button span {
    font-size: 0.9rem;
    white-space: nowrap;
}

.calendar-button:hover {
    transform: scale(1.2);
    background: var(--secondary);
}

/* Venue Box */
.venue-box {
    padding: 40px 10%;
    position: relative;
    background: rgba(18, 18, 18, 0.9);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.venue-box h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.venue-box p {
    font-size: 1.2rem;
    color: var(--light);
}

.venue-box:hover {
    transform: translateY(-5px);
}

/* Event Hero Section */
.event-hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 10% 0;
    overflow: hidden;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.7);
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 800px;
}

.event-hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s 0.5s forwards;
}

.event-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s 0.7s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s 0.9s forwards;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Timeline Section */
.timeline-section {
    padding: 80px 10%;
    position: relative;
    background: rgba(30, 30, 30, 0.7);
    margin: 40px 0;
}

.timeline-title {
    font-size: 3rem;
    text-align: center;
    color: var(--light);
    margin-bottom: 50px;
    position: relative;
}

.timeline-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 4px;
    height: 100%;
    background: var(--primary);
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding: 15px 20px 15px 70px;
    margin-bottom: 40px;
    background: rgba(18, 18, 18, 0.9);
    border-radius: 8px;
    width: calc(100% - 70px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-item::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 3px solid var(--light);
    border-radius: 50%;
    left: 23px;
    top: 20px;
    z-index: 2;
}

.timeline-item:hover {
    transform: translateY(-3px);
    background: rgba(18, 18, 18, 0.95);
}

.timeline-item h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.timeline-item:hover h3 {
    color: var(--primary);
}

.timeline-item p {
    font-size: 1rem;
    color: var(--light);
    transition: color 0.3s ease;
}

.timeline-item:hover p {
    color: var(--secondary);
}

/* Rules & Regulations Section */
.rules-section {
    padding: 100px 10%;
    position: relative;
}

.rules-title {
    font-size: 3rem;
    text-align: center;
    color: var(--light);
    margin-bottom: 40px;
    position: relative;
}

.rules-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

.rules-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.rules-item {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rules-item h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    padding: 15px;
    cursor: pointer;
    background: rgba(18, 18, 18, 0.9);
    transition: color 0.3s ease, background 0.3s ease;
}

.rules-item:hover h3 {
    color: var(--primary);
    background: rgba(18, 18, 18, 0.95);
}

.rules-item div {
    padding: 15px;
    display: none;
    background: rgba(30, 30, 30, 0.9);
    font-size: 0.9rem;
    transition: max-height 0.3s ease-out;
}

.rules-item.active div {
    display: block;
}

.rules-item ul {
    list-style: none;
    padding-left: 20px;
}

.rules-item li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    transition: color 0.3s ease;
}
/* 
.rules-item li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
} */

.rules-item:hover li {
    color: var(--secondary);
}

/* Registration Section */
.registration-section {
    padding: 100px 10%;
    position: relative;
    text-align: center;
}

.registration-title {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 40px;
    position: relative;
}

.registration-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

.registration-card {
    background: rgba(18, 18, 18, 0.9);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.registration-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--light);
}

.registration-card .fees {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.registration-card .qr-code {
    margin: 20px 0;
}

.registration-card .qr-code img {
    width: 150px;
    height: 150px;
}
/* Coordinator Info */
.coordinator-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--secondary);
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
    padding: 15px 20px;
    background: rgba(18, 18, 18, 0.6);
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinator-info:hover {
    color: var(--light);
    background: rgba(18, 18, 18, 0.8);
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(154, 0, 0, 0.5);
}

.coordinator-info p {
    margin: 0;
    line-height: 1.8;
    color: var(--light);
}

.coordinator-info br {
    margin-bottom: 8px;
}

.coordinator-info a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.coordinator-info a:hover {
    color: var(--primary);
}
/* Prizes Section */
.prizes-section {
    padding: 100px 10%;
    position: relative;
    text-align: center;
}

.prizes-title {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 40px;
    position: relative;
}

.prizes-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

.prizes-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.prize-card {
    background: rgba(18, 18, 18, 0.9);
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.prize-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.prize-card h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.prize-card:hover h4 {
    color: var(--primary);
}

.prize-card p {
    font-size: 1.1rem;
    color: var(--light);
    transition: color 0.3s ease;
}

.prize-card:hover p {
    color: var(--secondary);
}

/* Footer */
footer {
    padding: 50px 5% 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.footer-section:hover {
    background: rgba(154, 0, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

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

.footer-section p, .footer-section a {
    color: var(--light);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section:hover p, .footer-section:hover a {
    color: var(--secondary);
}

.footer-section a:hover {
    transform: translateX(5px);
}

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

.social-links a {
    color: var(--light);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary);
    background: rgba(154, 0, 0, 0.2);
    transform: scale(1.2) rotate(10deg);
}

.copyright {
    color: var(--dark);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid var(--dark);
    transition: all 0.3s ease;
}

footer:hover .copyright {
    color: var(--light);
}

/* Static Particles */
.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    box-shadow: 0 0 8px rgba(154, 0, 0, 0.5);
}

/* Corner Ribbon and Prize Badge */
.corner-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    overflow: hidden;
    z-index: 101;
}

.corner-ribbon span {
    position: absolute;
    top: 30px;
    right: -50px;
    transform: rotate(45deg);
    width: 200px;
    background: var(--primary);
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.prize-badge {
    display: none;
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 101;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Responsive Adjustments */

/* Desktop and Larger Screens */
@media (min-width: 769px) {
    .prize-badge {
        display: none;
    }
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    /* Base Styles */
    body {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Custom Cursor */
    html {
        cursor: default;
    }

    .custom-cursor, .custom-cursor-follower {
        display: none;
    }

    /* Cursor Overrides */
    a, button, .timeline-item, .rules-item, .cta-button, .calendar-button {
        cursor: default !important;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    /* Preloader */
    .preloader-text {
        font-size: 2rem;
        letter-spacing: 1.5px;
        text-shadow: 0 0 8px rgba(175, 153, 108, 0.6);
    }

    /* Navigation */
    nav {
        height: 80px;
        padding: 10px 5%;
    }

    .logo-image {
        height: 60px;
    }

    .logo-container {
        transform: scale(0.9);
    }

    .technologia-text {
        font-size: 1.4rem;
        margin-right: 15px;
        align-items: center;
    }

    .technologia-text .year {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    /* Coordinator Info */
    /* Responsive Adjustments for Coordinator Info */
    .coordinator-info {
        font-size: 0.9rem;
        padding: 12px 15px;
        max-width: 90%;
    }

    .coordinator-info p {
        line-height: 1.6;
    }

    /* Back to Home Button */
    .back-home {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 15px;
        bottom: 15px;
    }

    /* Floating Calendar Button */
    .calendar-button {
        bottom: 15px;
        right: 15px;
        padding: 10px;
        width: 70px;
        font-size: 0.9rem;
    }

    .calendar-button::before {
        font-size: 1.2rem;
    }

    .calendar-button span {
        font-size: 0.8rem;
    }

    /* Venue Box */
    .venue-box {
        
        padding: 30px 5%;
        margin-top: 40px;
margin-bottom: 20px;
margin-left: 0;
margin-right: 0;
    }

    .venue-box h2 {
        font-size: 2rem;
    }

    .venue-box p {
        font-size: 1rem;
    }

    /* Event Hero Section */
    .event-hero {
        height: 60vh;
        padding: 90px 5% 0;
    }

    .event-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .event-hero p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Timeline Section */
    .timeline-section {
        padding: 60px 5%;
    }

    .timeline-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

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

    .timeline-item {
        padding: 10px 15px 10px 50px;
        margin-bottom: 30px;
        width: calc(100% - 50px);
    }

    .timeline-item::before {
        left: 13px;
        top: 15px;
        width: 12px;
        height: 12px;
    }

    .timeline-item h3 {
        font-size: 1.2rem;
    }

    .timeline-item p {
        font-size: 0.9rem;
    }

    /* Rules & Regulations Section */
    .rules-section {
        padding: 60px 5%;
    }

    .rules-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .rules-item h3 {
        font-size: 1.3rem;
        padding: 12px;
    }

    .rules-item div {
        font-size: 0.9rem;
        padding: 12px;
    }

    .rules-item ul {
        padding-left: 15px;
    }

    .rules-item li {
        font-size: 0.85rem;
    }

    /* Registration Section */
    .registration-section {
        padding: 60px 5%;
    }

    .registration-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .registration-card {
        padding: 20px;
        max-width: 100%;
    }

    .registration-card p {
        font-size: 1rem;
    }

    .registration-card .fees {
        font-size: 1.1rem;
    }

    .registration-card .qr-code img {
        width: 120px;
        height: 120px;
    }

    /* Prizes Section */
    .prizes-section {
        padding: 60px 5%;
    }

    .prizes-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .prize-card {
        width: 150px;
        padding: 15px;
    }

    .prize-card img {
        width: 80px;
        height: 80px;
    }

    .prize-card h4 {
        font-size: 1.1rem;
    }

    .prize-card p {
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 40px 5% 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        min-width: 100%;
        margin-bottom: 20px;
        padding: 10px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        font-size: 1rem;
        width: 35px;
        height: 35px;
    }

    .copyright {
        font-size: 0.8rem;
    }

    /* Static Particles */
    .particle {
        width: 6px;
        height: 6px;
    }

    /* Corner Ribbon and Prize Badge */
    .corner-ribbon {
        width: 150px;
        height: 150px;
    }

    .corner-ribbon span {
        top: 20px;
        right: -40px;
        width: 150px;
        line-height: 40px;
        font-size: 0.9rem;
    }

    .prize-badge {
        display: block;
        font-size: 0.8rem;
        padding: 6px 15px;
        top: 80px;
    }
}

/* Smaller Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
    /* Base Styles */
    body {
        font-size: 0.9rem;
    }

    /* Preloader */
    .preloader-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    /* Navigation */
    nav {
        height: 70px;
        padding: 8px 5%;
    }

    .logo-image {
        height: 50px;
    }

    .logo-container {
        transform: scale(0.85);
    }

    .technologia-text {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .technologia-text .year {
        font-size: 0.7rem;
    }

    /* Coordinator Info */
    .coordinator-info {
        font-size: 0.8rem;
        padding: 10px 12px;
        max-width: 95%;
    }

    .coordinator-info p {
        line-height: 1.5;
    }

    .coordinator-info br {
        margin-bottom: 6px;
    }



    /* Back to Home Button */
    .back-home {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: 10px;
        bottom: 10px;
    }

    /* Floating Calendar Button */
    .calendar-button {
        bottom: 10px;
        right: 10px;
        padding: 8px;
        width: 60px;
    }

    .calendar-button::before {
        font-size: 1.1rem;
    }

    .calendar-button span {
        font-size: 0.7rem;
    }

    /* Venue Box */
    .venue-box {
        padding: 20px 5%;
        margin-top: 20px;
margin-bottom: 10px;
margin-left: 0;
margin-right: 0;
    }

    .venue-box h2 {
        font-size: 1.5rem;
    }

    .venue-box p {
        font-size: 0.9rem;
    }

    /* Event Hero Section */
    .event-hero {
        height: 50vh;
        padding: 80px 5% 0;
    }

    .event-hero h1 {
        font-size: 2rem;
    }

    .event-hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    /* Timeline Section */
    .timeline-section {
        padding: 50px 5%;
    }

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

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

    .timeline-item {
        padding: 8px 12px 8px 40px;
        margin-bottom: 25px;
        width: calc(100% - 40px);
    }

    .timeline-item::before {
        left: 10px;
        top: 12px;
        width: 10px;
        height: 10px;
    }

    .timeline-item h3 {
        font-size: 1.1rem;
    }

    .timeline-item p {
        font-size: 0.85rem;
    }

    /* Rules & Regulations Section */
    .rules-section {
        padding: 50px 5%;
    }

    .rules-title {
        font-size: 1.8rem;
    }

    .rules-item h3 {
        font-size: 1.2rem;
        padding: 10px;
    }

    .rules-item div {
        font-size: 0.85rem;
        padding: 10px;
    }

    .rules-item li {
        font-size: 0.8rem;
    }

    /* Registration Section */
    .registration-section {
        padding: 50px 5%;
    }

    .registration-title {
        font-size: 1.8rem;
    }

    .registration-card {
        padding: 15px;
    }

    .registration-card p {
        font-size: 0.9rem;
    }

    .registration-card .fees {
        font-size: 1rem;
    }

    .registration-card .qr-code img {
        width: 100px;
        height: 100px;
    }

    /* Prizes Section */
    .prizes-section {
        padding: 50px 5%;
    }

    .prizes-title {
        font-size: 1.8rem;
    }

    .prize-card {
        width: 120px;
        padding: 12px;
    }

    .prize-card img {
        width: 60px;
        height: 60px;
    }

    .prize-card h4 {
        font-size: 1rem;
    }

    .prize-card p {
        font-size: 0.85rem;
    }

    /* Footer */
    footer {
        padding: 30px 5% 10px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.85rem;
    }

    .social-links a {
        font-size: 0.9rem;
        width: 30px;
        height: 30px;
    }

    .copyright {
        font-size: 0.75rem;
    }

    /* Static Particles */
    .particle {
        width: 5px;
        height: 5px;
    }

    /* Corner Ribbon and Prize Badge */
    .corner-ribbon {
        width: 120px;
        height: 120px;
    }

    .corner-ribbon span {
        top: 15px;
        right: -35px;
        width: 120px;
        line-height: 35px;
        font-size: 0.8rem;
    }

    .prize-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        top: 70px;
    }
}