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

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow-x: hidden;
    font-family: 'Permanent Marker', cursive;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Title Section */
.title-section {
    text-align: center;
    padding: 30px 20px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vw, 60px);
    max-width: 1400px;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(4rem, 12vw, 10rem);
    color: #ffffff;
    text-shadow: 
        4px 4px 0px #000000,
        8px 8px 0px rgba(0, 0, 0, 0.3),
        -2px -2px 0px #000000,
        2px -2px 0px #000000,
        -2px 2px 0px #000000;
    letter-spacing: 0.05em;
    font-weight: 900;
    transform: rotate(-2deg);
    animation: titlePulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-link img {
    height: clamp(50px, 8vw, 80px);
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.social-link:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

.social-link:active {
    transform: scale(0.95) rotate(5deg);
}

@keyframes titlePulse {
    0%, 100% {
        transform: rotate(-2deg) scale(1);
    }
    50% {
        transform: rotate(-2deg) scale(1.02);
    }
}

/* Scrolling Container */
.scroll-container {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    position: relative;
}

.scroll-row {
    display: flex;
    width: fit-content;
    gap: 30px;
}

.scroll-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.scroll-content img {
    height: clamp(200px, 25vw, 350px);
    width: auto;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.scroll-content img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Scroll Right Animation */
.scroll-right {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-33.33%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Scroll Left Animation */
.scroll-left {
    animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Banner Section */
.banner-section {
    width: 100%;
    margin-top: auto;
    overflow: hidden;
    background: #16213e;
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-section {
        padding: 25px 15px 15px;
    }
    
    .title-container {
        gap: clamp(15px, 4vw, 40px);
    }
    
    .main-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .social-link img {
        height: clamp(40px, 10vw, 60px);
    }
    
    .social-links {
        gap: 10px;
    }
    
    .scroll-container {
        padding: 12px 0;
    }
    
    .scroll-content {
        gap: 20px;
    }
    
    .scroll-row {
        gap: 20px;
    }
    
    .scroll-content img {
        height: clamp(150px, 30vw, 250px);
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .title-section {
        padding: 20px 10px 10px;
    }
    
    .title-container {
        gap: clamp(10px, 3vw, 20px);
    }
    
    .social-link img {
        height: clamp(35px, 12vw, 50px);
    }
    
    .social-links {
        gap: 8px;
    }
    
    .scroll-content img {
        height: clamp(120px, 35vw, 200px);
        border-radius: 12px;
    }
    
    .scroll-container {
        padding: 10px 0;
    }
}

/* Smooth scrolling and performance optimizations */
.scroll-row {
    will-change: transform;
}

.scroll-content img {
    will-change: transform;
}
