/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=MedievalSharp&display=swap');

:root {
    --primary: #8b0000;
    --primary-light: #ff4d4d;
    --accent: #ff9999;
    --text: #ffffff;
    --bg-overlay: rgba(30, 0, 0, 0.85);
    --border-glow: 0 0 10px rgba(255, 77, 77, 0.7);
    font-size: 14px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cinzel', serif;
    color: var(--text);
}

/* Red Glow Effect - Add this to your CSS file */
body::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 50, 50, 0.25) 0%,
        rgba(255, 0, 0, 0) 70%
    );
    z-index: 0;
    pointer-events: none;
    animation: redPulse 4s ease-in-out infinite;
}

@keyframes redPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Make sure content stays above the effect */
.container,
.countdown-container,
.progress-section {
    position: relative;
    z-index: 1;
}


/* Full page background */
body {
    min-height: 100vh;
    margin: 0;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Background image with logo - Full Screen */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.avif') no-repeat center center;
    background-size: cover;  /* Changed from 60% auto to cover */
    opacity: 0.25;
    z-index: -2;
    pointer-events: none;
}


/* Logo */
.logo {
    display: block;
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 77, 77, 0.6));
    transition: transform 0.3s ease;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    animation: fadeInDown 0.8s ease-out;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 2rem;
    color: var(--primary-light);
    text-shadow: var(--border-glow);
    margin: 0.5rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Changed from 1 to -1 to be behind content */
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-light);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    animation: float 8s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary-light);
}

.particle:nth-child(odd) {
    background: var(--primary);
    animation-duration: 10s;
    animation-delay: 1s;
}

.particle:nth-child(3n) {
    background: #ff4d4d;
    animation-duration: 12s;
    animation-delay: 2s;
}

@keyframes float {
    0% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translate(20px, 20px) rotate(5deg) scale(1.2);
        opacity: 0.7;
    }
    50% { 
        transform: translate(0, 40px) rotate(0deg) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translate(-20px, 20px) rotate(-5deg) scale(1.1);
        opacity: 0.6;
    }
    100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
}

.countdown-container {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.countdown-title {
    color: #ff4d4d;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
}

.time-block span {
    display: block;
}

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.time-block .label {
    font-size: 0.9rem;
    color: #ff8080;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Popup Styles */
/* Popup Styles */
/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    text-align: center;
    display: inline-block;
    pointer-events: none; /* This prevents the content from blocking the link */
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
    pointer-events: none; /* This prevents the image from blocking the link */
}

.popup-link:hover .popup-image {
    transform: scale(1.02);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
    z-index: 1001;
}

.close-btn:hover {
    color: #ff4d4d;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown {
        gap: 0.8rem;
    }
    
    .time-block {
        padding: 0.8rem;
        min-width: 70px;
    }
    
    .time-block span:first-child {
        font-size: 2rem;
    }
    
    .time-block .label {
        font-size: 0.8rem;
    }
}

/* Add this to your existing CSS */
.progress-section {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #ff8080;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    width: 25%; /* Adjust this percentage based on your progress */
    background: linear-gradient(90deg, #ff4d4d, #ff8080);
    border-radius: 5px;
    position: relative;
    transition: width 0.5s ease;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-milestones {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #ffb3b3;
}

.milestone {
    position: relative;
    text-align: center;
    flex: 1;
}

.milestone::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    margin: 0 auto 0.3rem;
    box-shadow: 0 0 5px #ff4d4d;
}

.milestone.active {
    color: #fff;
    font-weight: bold;
}

.milestone.active::before {
    background: #4caf50;
    box-shadow: 0 0 10px #4caf50;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}


/* CTA Buttons */
.cta-container {
    margin: 2rem 0;
    text-align: center;
}

.pre-register-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.pre-register-box {
    background: rgba(30, 0, 0, 0.8);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pre-register-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    animation: borderGlow 3s linear infinite;
}

.pre-register-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(139, 0, 0, 0.5);
}

.pre-register {
    margin: 0;
    font-size: 1.1rem;
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
}

.gift-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 1rem 2rem;
    border: 2px solid #DAA520;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.gift-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.gift-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFE44D, #FFB700);
}

.gift-button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}



.gift-button:hover i {
    animation: bounce 0.5s ease;
}

.discord-box {
    text-align: center;
    margin-top: 0.5rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #7289DA;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discord-btn::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;
    z-index: -1;
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn:hover {
    background: #5b6eae;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(114, 137, 218, 0.4);
}

.discord-btn i {
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.discord-btn:hover i {
    transform: scale(1.1);
}

/* ===== VISIBLE ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 500px;
    flex-wrap: wrap;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.action-button i {
    margin-right: 0.6rem;
    font-size: 1em;
}

/* Gift Button */
.gift-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff1a53 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 26, 83, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gift-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8a8a 0%, #ff3366 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gift-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 26, 83, 0.4);
}

.gift-button:hover::before {
    opacity: 1;
}

.gift-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 26, 83, 0.3);
}

/* Gift Button Icon Animation */
@keyframes pulseGiftIcon {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.gift-button i {
    font-size: 1.3em;
    color: #fff201;
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulseGiftIcon 2s infinite ease-in-out;
}

/* Stop animation on button hover */
.gift-button:hover i {
    animation: none;
    transform: scale(1.1);
}

/* Active state - when clicked */
.gift-button:active i {
    transform: scale(0.95);
}



/* Discord Button */
.discord-btn {
    background: linear-gradient(135deg, #7289DA 0%, #4e5d94 100%);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 137, 218, 0.3);
}

/* Active state */
.action-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .action-button {
        width: 100%;
        max-width: 220px;
        padding: 0.6rem 1.2rem;
    }
}

/* Number Animation */
@keyframes pulseNumber {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.time-block:nth-child(2n) {
    animation-delay: 0.5s;
}

.social-link {
    width: 28px;  /* Reduced from 32px */
    height: 28px;  /* Reduced from 32px */
    /* other existing styles... */
}

.social-icon {
    width: 16px;  /* Adjust this value to make the image smaller */
    height: 16px;  /* Adjust this value to make the image smaller */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .social-link {
        width: 26px;  /* Reduced from 30px */
        height: 26px;  /* Reduced from 30px */
    }
    
    .social-icon {
        width: 14px;  /* Adjust for mobile */
        height: 14px;  /* Adjust for mobile */
    }
}

/* Social Icons Animation */
.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(255, 77, 77, 0.5);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 77, 77, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
    border-radius: 50%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.2);
    border-color: var(--primary);
}

.social-link:hover::before {
    transform: scale(1);
    background: rgba(255, 77, 77, 0.1);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover .social-icon {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Floating animation only */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.social-link {
    animation: float 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}

/* ===== FOOTER STYLES ===== */
body {
    padding-bottom: 130px; /* Add space for fixed footer */
}

.site-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(10, 0, 0, 0.95);
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 77, 77, 0.3);
    backdrop-filter: blur(8px);
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    min-height: 100px; /* Reduced from 140px */
}

.footer-container {
    max-width: 1000px; /* Slightly reduced from 1200px */
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0.1rem 0;
}

/* Social Icons */
.social-section {
    width: 100%;
    margin: 0.3rem 0; /* Reduced margin */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem; /* Reduced gap */
    margin-bottom: 0.3rem; /* Reduced margin */
    flex-wrap: wrap;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 0.8rem; /* Reduced gap */
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.3rem 0; /* Reduced margin */
    font-size: 0.85rem; /* Slightly smaller text */
}

/* Copyright */
.copyright {
    margin-top: 0.3rem; /* Reduced margin */
    font-size: 0.75rem; /* Smaller text */
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-bottom: 130px; /* Slightly more space on mobile */
    }
    
    .site-footer {
        padding: 0.6rem 0;
        min-height: 110px; /* Slightly taller on mobile */
    }
    
    .footer-content {
        gap: 0.4rem;
    }
    
    .social-links {
        gap: 0.6rem;
        margin-bottom: 0.2rem;
    }
    
    .footer-links {
        gap: 0.6rem;
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
}

.coming-soon {
    font-size: 1.8rem;
    color: #fff;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.7);
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: linear-gradient(90deg, 
        rgba(255, 77, 77, 0.2), 
        rgba(255, 77, 77, 0.4), 
        rgba(255, 77, 77, 0.2)
    );
    border: 1px solid rgba(255, 77, 77, 0.5);
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.3);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 77, 77, 0.3);
        text-shadow: 0 0 10px rgba(255, 77, 77, 0.7);
    }
    100% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(255, 77, 77, 0.5);
        text-shadow: 0 0 15px rgba(255, 77, 77, 0.9);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    20% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* ===== COMPACT FOOTER ===== */
body {
    padding-bottom: 60px; /* Reduced space for fixed footer */
}

.site-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(10, 0, 0, 0.95);
    padding: 0.1rem 0; /* Reduced padding */
    border-top: 1px solid rgba(255, 77, 77, 0.3);
    backdrop-filter: blur(8px);
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    min-height: 60px; /* Significantly reduced height */
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem; /* Reduced gap */
    padding: 0.1rem 0; /* Reduced padding */
}

/* ===== MODERN SOCIAL ICONS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 77, 77, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Glow effect on hover */
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 77, 77, 0.1) 0%,
        rgba(255, 77, 77, 0.05) 50%,
        rgba(255, 77, 77, 0.1) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Social icon image */
.social-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    position: relative;
    z-index: 1;
}

/* Hover effects */
.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 77, 77, 0.1);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.2);
    border-color: rgba(255, 77, 77, 0.5);
}

.social-link:hover::before {
    transform: translateX(100%);
}

/* Pulsing animation on hover */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.social-link:hover .social-icon {
    animation: pulse 1.5s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 0.6rem; /* Reduced gap */
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.2rem 0; /* Reduced margin */
    font-size: 0.75rem; /* Smaller text */
}

/* Copyright */
.copyright {
    margin-top: 0.2rem; /* Reduced margin */
    font-size: 0.65rem; /* Smaller text */
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.2; /* Reduced line height */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-bottom: 65px; /* Reduced space on mobile */
    }
    
    .site-footer {
        padding: 0.3rem 0;
        min-height: 55px; /* Smaller on mobile */
    }
    
    .social-links {
        gap: 0.4rem;
        margin-bottom: 0.1rem;
    }
    
    .footer-links {
        gap: 0.4rem;
        font-size: 0.7rem;
    }
    
    .copyright {
        font-size: 0.6rem;
    }
}

