/* Import Bebas Neue font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  /* Remove the filter property to eliminate the shadow */
}

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

@font-face {
  font-family: 'Zuume Rough Bold';
  src: url('fonts/zuume-rough-bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html {
    scroll-behavior: smooth;
}

/* For the hero title */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: -0.05em;
}

/* For section titles */
.section-title {
    font-family: 'Bebas Neue', 'Cinzel', serif;
    text-transform: uppercase;
    position: relative;
}

body {
    font-family: 'Courier Prime', monospace;
    background: url('public/background image .png') center/cover fixed;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #910505;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}   

/* Parchment Background Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.slashgear.com/img/gallery/the-strange-history-surrounding-cicada-3301-the-internets-most-complex-puzzle/intro-1698061288.jpg') center/cover fixed;
    opacity: 0.1;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Animated Insects */
.insects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.insect {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    color: #910505;
}

.cicada-1 {
    top: 20%;
    left: 10%;
    animation: float-diagonal 25s infinite;
}

.beetle-1 {
    top: 60%;
    right: 15%;
    animation: crawl-horizontal 30s infinite reverse;
}

.moth-1 {
    top: 40%;
    left: 80%;
    animation: flutter 20s infinite;
}

.cicada-2 {
    bottom: 30%;
    left: 70%;
    animation: float-vertical 35s infinite;
}

.beetle-2 {
    top: 80%;
    left: 30%;
    animation: crawl-circular 40s infinite;
}

@keyframes tick {
    0%   { transform: translateY(0); opacity: 1; }
    40%  { transform: translateY(-8%); opacity: 0.9; }
    60%  { transform: translateY(6%);  opacity: 1; }
    100% { transform: translateY(0);   opacity: 1; }
}

.tick {
    animation: tick 0.18s ease-out;
}

@keyframes float-diagonal {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(200px, -100px) rotate(90deg); }
    50% { transform: translate(400px, 50px) rotate(180deg); }
    75% { transform: translate(200px, 150px) rotate(270deg); }
}

@keyframes crawl-horizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-300px); }
}

@keyframes flutter {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-150px, -80px) scale(1.2); }
    66% { transform: translate(-300px, 20px) scale(0.8); }
}

@keyframes float-vertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-200px); }
}

@keyframes crawl-circular {
    0% { transform: translate(0, 0); }
    25% { transform: translate(100px, -100px); }
    50% { transform: translate(0, -200px); }
    75% { transform: translate(-100px, -100px); }
    100% { transform: translate(0, 0); }
}

/* Navigation - Transparent Background */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* More transparent */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7); /* Slightly less transparent when scrolled */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-logo .logo-text {
    font-family: 'Bebas Neue', 'Cinzel', serif;
    color: #910505;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #B8860B;
    text-shadow: 0 0 10px rgba(250, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #910505, #ff3333);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.register-btn {
    background: linear-gradient(135deg, #910505, #ff3333);
    color: #000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    color: #000 !important;
}

.register-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #910505;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title-container {
    position: relative;
    margin-bottom: 2rem;
    text-shadow: none;
}

.hero-subtitle {
    font-family: 'Courier Prime', monospace;
    font-size: 1.2rem;
    color: #910505;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
  font-family: 'Bebas Neue', 'Cinzel', serif;
  font-size: 150px;
  letter-spacing: 0.05em;
  /* Remove or comment out the text-shadow property */
  /* text-shadow: 
      0 0 20px rgba(255, 0, 0, 0.8),
      0 0 40px rgba(255, 0, 0, 0.6),
      4px 4px 8px rgba(0, 0, 0, 0.8); */
  animation: titleGlow 3s ease-in-out infinite alternate;
  word-spacing: 8px;
  line-height: 1.1;
}

.hero-title span.cicada-ad {
    color: #910505;
    letter-spacing: 0.1em; /* Extra spacing for CICADA */
}

.hero-title span.cicada-year {
    color: #000;
    margin-left: 4px; /* Space between CICADA and '25 */
}

@keyframes titleGlow {
  0%, 100% { 
    /* Remove text-shadow properties */
  }
}

.hero-tagline {
    font-size: 1.5rem;
    color: #cc0000;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

/* Countdown Timer - More Transparent */
.countdown-container {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3); /* Updated border color to gold */
    border-radius: 15px;
    backdrop-filter: blur(10px);
}


.countdown-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #D4AF37; /* Changed from #ff0000 to gold color */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37; /* Changed from #ff3333 to gold color */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); /* Updated shadow color */
    font-family: 'Courier Prime', monospace;
}

.time-label {
    font-size: 0.9rem;
    color: #B8860B; /* Changed from #cc0000 to darker gold */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #910505, #ff3333);
    color: #000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: #910505;
    border: 2px solid #910505;
}

.cta-button.secondary:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #910505;
    border-bottom: 2px solid #910505;
    transform: rotate(45deg);
}

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

/* Common Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-family: 'Bebas Neue', serif;
    font-size: 2.5rem;
    color: #910505;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
}

/* Event Section - More Transparent */
.event-section {
    background: rgba(0, 0, 0, 0.2); /* More transparent */
}

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

.event-card {
    background: rgba(0, 0, 0, 0.5); /* More transparent */
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #910505;
}

.event-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.event-date, .event-location, .event-prize {
    font-size: 1.2rem;
    color: #d1ca7a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-time, .event-address, .event-rewards {
    color: #2acaaa;
    font-size: 0.9rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 20px;
    line-height: 1.8;
    color: #910505;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3); /* More transparent */
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
    color: #910505;
}

/* Cipher Wheel Animation */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cipher-wheel {
    position: relative;
    width: 200px;
    height: 200px;
}

.wheel-outer, .wheel-inner {
    position: absolute;
    border: 2px solid #910505;
    border-radius: 50%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.wheel-outer {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation: rotate 20s;
    border-style: dashed;
}

.wheel-inner {
    width: 120px;
    height: 120px;
    top: 40px;
    left: 40px;
    animation: rotate 15s reverse;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: pulse 2s infinite;
    color: #910505;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* Rules Section - More Transparent */
.rules-section {
    background: rgba(0, 0, 0, 0.2); /* More transparent */
}

.rules-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.rules-preview h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #910505;
    margin-bottom: 1.5rem;
}

.rules-list {
    list-style: none;
    margin: 1rem 0;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    color: #ffffff;
}

.rules-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    color: #910505;
    position: relative;
    padding-left: 2rem;
}

.rules-list li::before {
    content: '🔐';
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.download-card {
    background: rgba(0, 0, 0, 0.5); /* More transparent */
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: rgba(255, 0, 0, 0.6);
    transform: translateY(-5px);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #910505;
}

.download-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #910505;
    margin-bottom: 1rem;
}

.download-card p {
    color: #cc0000;
    margin-bottom: 2rem;
}

.download-btn {
    background: linear-gradient(135deg, #910505, #ff3333);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #910505;
    margin-bottom: 1rem;
}

.contact-info p {
    font-family: 'Zuume Rough Bold';
    font-size: x-large;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin: 1rem 0;
}

.contact-item {
    font-family: 'Zuume Rough Bold';
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #910505;
    font-size: 24px;
    font-weight: 100;
}

.contact-icon {
    font-size: 1.2rm;
    width: 30px;
    color: #910505;
}

/* Contact Form - More Transparent */
.contact-form {
    background: rgba(0, 0, 0, 0.5); /* More transparent */
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #910505;
    font-family: 'Courier Prime', monospace;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #910505;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cc0000;
}

.submit-btn {
    background: linear-gradient(135deg, #910505, #ff3333);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Register Section - More Transparent */
.register-section {
    background: rgba(0, 0, 0, 0.2); /* More transparent */
    text-align: center;
}

.register-description {
    font-family: 'Bebas Neue', 'Cinzel', serif;
    font-size: 27px;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    word-spacing: 1.2px;
}

.register-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Cinzel', serif;
}

.stat-label {
    color: #D4AF37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.register-main-btn {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(255, 225, 0, 0.4);
}

.register-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.register-note {
    color: #cc0000;
    font-style: italic;
    margin-top: 1rem;
}

/* Footer - More Transparent */
.footer {
    background: rgba(0, 0, 0, 0.7); /* More transparent */
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #910505;
    font-weight: 700;
}

.footer-logo p {
    color: #cc0000;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #910505;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff3333;
}

.footer-social {
   display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social span {
    color: #cc0000;
}

.social-link {
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
}

.social-link:hover {
   background: rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    color: #cc0000;
    font-size: 0.9rem;
}
.footer-bottom1 {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    color: #D4AF37;
    font-size: bold;
}

/* Responsive Design - Improved Mobile View */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.08em;
        word-spacing: 6px;
    }
    
    .hero-title span.cicada-ad {
        letter-spacing: 0.15em;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 70px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
        text-align: center;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .rules-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .register-stats {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Fix for mobile background */
    body {
        background-attachment: scroll;
    }
    
    body::before {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        word-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .countdown-container {
        padding: 1.5rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .event-card, .download-card, .contact-form {
        padding: 1.5rem;
    }
    
    .register-main-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}