/* ================== RESET & GLOBAL STYLES ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f0f1e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================== CONTAINER & BACKGROUND ================== */
.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Background Video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 30, 29, 0.8) 0%, rgba(26, 43, 46, 0.8) 50%, rgba(22, 56, 62, 0.8) 100%);
    background-attachment: fixed;
    z-index: -2;
    pointer-events: none;
}

.background-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(226, 52, 43, 0.15) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.background-gradient::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(180, 70, 70, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

/* ================== CONTENT SECTION ================== */
.content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================== PROFILE SECTION ================== */
.profile-section {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
}

/* ================== LOGO DENGAN EFEK BUBBLE ================== */
.logo-container {
    position: relative;
    width: 300px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo dengan glow merah intens */
.logo-main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 20px rgba(255, 0, 0, 0.9))
        drop-shadow(0 0 40px rgba(255, 69, 0, 0.7))
        drop-shadow(0 0 60px rgba(255, 140, 0, 0.5));
    animation: logoPulse 3s ease-in-out infinite;
}

/* Glow layer 1 */
.logo-glow-1 {
    position: absolute;
    width: 115%;
    height: 125%;
    background: url('assets/logo.png') center/contain no-repeat;
    background-size: 100% 100%;
    z-index: 2;
    filter: blur(15px) brightness(1.8);
    opacity: 0.6;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Glow layer 2 */
.logo-glow-2 {
    position: absolute;
    width: 130%;
    height: 140%;
    background: linear-gradient(45deg, 
        rgba(255, 0, 0, 0.9) 0%,
        rgba(255, 69, 0, 0.7) 50%,
        rgba(255, 140, 0, 0.9) 100%);
    z-index: 1;
    filter: blur(25px) brightness(1.5);
    opacity: 0.3;
    animation: rotateGlow 10s linear infinite;
    mask-image: url('assets/logo.png');
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('assets/logo.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

/* ================== BUBBLE EFFECTS ================== */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    animation: floatBubble linear infinite;
    opacity: 0;
}

/* Bubble sizes and positions */
.bubble-1 {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 15%;
    animation-duration: 6s;
    animation-delay: 0s;
    background: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.bubble-2 {
    width: 12px;
    height: 12px;
    top: 25%;
    right: 10%;
    animation-duration: 7s;
    animation-delay: 1s;
    background: rgba(255, 69, 0, 0.3);
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.5);
}

.bubble-3 {
    width: 6px;
    height: 6px;
    bottom: 35%;
    left: 5%;
    animation-duration: 8s;
    animation-delay: 2s;
    background: rgba(255, 140, 0, 0.3);
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}

.bubble-4 {
    width: 10px;
    height: 10px;
    bottom: 15%;
    right: 20%;
    animation-duration: 5s;
    animation-delay: 3s;
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bubble-5 {
    width: 7px;
    height: 7px;
    top: 40%;
    left: 25%;
    animation-duration: 9s;
    animation-delay: 0.5s;
    background: rgba(255, 50, 50, 0.3);
    box-shadow: 0 0 9px rgba(255, 50, 50, 0.5);
}

.bubble-6 {
    width: 9px;
    height: 9px;
    top: 60%;
    right: 15%;
    animation-duration: 6.5s;
    animation-delay: 1.5s;
    background: rgba(255, 100, 0, 0.3);
    box-shadow: 0 0 11px rgba(255, 100, 0, 0.5);
}

.bubble-7 {
    width: 5px;
    height: 5px;
    bottom: 25%;
    left: 30%;
    animation-duration: 7.5s;
    animation-delay: 2.5s;
    background: rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 7px rgba(255, 165, 0, 0.5);
}

.bubble-8 {
    width: 11px;
    height: 11px;
    bottom: 45%;
    right: 5%;
    animation-duration: 8.5s;
    animation-delay: 3.5s;
    background: rgba(255, 200, 0, 0.3);
    box-shadow: 0 0 13px rgba(255, 200, 0, 0.5);
}

/* ================== SPARKLE EFFECTS ================== */
.sparkle {
    position: absolute;
    font-size: 20px;
    z-index: 6;
    animation: sparkleFloat linear infinite;
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.sparkle-1 {
    top: 5%;
    left: 5%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 15%;
    right: 5%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.sparkle-3 {
    bottom: 10%;
    left: 20%;
    animation-duration: 9s;
    animation-delay: 4s;
}

/* ================== ANIMATIONS ================== */
@keyframes logoPulse {
    0%, 100% {
        filter: 
            drop-shadow(0 0 20px rgba(255, 0, 0, 0.9))
            drop-shadow(0 0 40px rgba(255, 69, 0, 0.7))
            drop-shadow(0 0 60px rgba(255, 140, 0, 0.5));
        transform: scale(1);
    }
    50% {
        filter: 
            drop-shadow(0 0 30px rgba(255, 0, 0, 1))
            drop-shadow(0 0 60px rgba(255, 69, 0, 0.9))
            drop-shadow(0 0 90px rgba(255, 140, 0, 0.7));
        transform: scale(1.02);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        filter: blur(12px) brightness(1.5);
    }
    50% {
        opacity: 0.8;
        filter: blur(18px) brightness(2);
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--tx, 60px), var(--ty, -60px)) scale(1.2) rotate(180deg);
        opacity: 0;
    }
}

@keyframes sparkleFloat {
    0% {
        transform: translate(0, 0) scale(0.8) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: scale(1.2);
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--sx, 70px), var(--sy, -70px)) scale(0.6) rotate(360deg);
        opacity: 0;
    }
}

/* Set random movement untuk bubbles */
.bubble-1 { --tx: 50px; --ty: -50px; }
.bubble-2 { --tx: -55px; --ty: 40px; }
.bubble-3 { --tx: 45px; --ty: 55px; }
.bubble-4 { --tx: -40px; --ty: -45px; }
.bubble-5 { --tx: 60px; --ty: -35px; }
.bubble-6 { --tx: -50px; --ty: 60px; }
.bubble-7 { --tx: 35px; --ty: 50px; }
.bubble-8 { --tx: -60px; --ty: -40px; }

/* Set random movement untuk sparkles */
.sparkle-1 { --sx: 80px; --sy: -60px; }
.sparkle-2 { --sx: -70px; --sy: 80px; }
.sparkle-3 { --sx: 90px; --sy: 70px; }

/* Hover effect untuk logo */
.logo-container:hover .logo-main img {
    animation: logoPulse 1s ease-in-out infinite;
}

.logo-container:hover .bubble {
    animation-duration: 3s;
}

.logo-container:hover .sparkle {
    animation-duration: 4s;
}

.profile-subtitle {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 8px;
    margin-top: -5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: subtitleGlow 2s ease-in-out infinite;
    position: relative;
    padding-bottom: 8px;
}

.profile-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #ff0000, 
        #ff4500, 
        #ff0000, 
        transparent);
    border-radius: 2px;
}

@keyframes subtitleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                     0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
                     0 0 30px rgba(255, 215, 0, 0.5),
                     0 0 40px rgba(255, 215, 0, 0.3);
    }
}

.profile-bio {
    font-size: 0.95rem;
    color: #a0a0b0;
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.3;
}

/* ================== SOCIAL ICONS ================== */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(226, 43, 43, 0.1);
    border: 2px solid rgba(226, 67, 43, 0.3);
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e2402b, #ff0d00);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-8px);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.308);
}

.social-icon.instagram:hover {
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.social-icon.tiktok:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ================== IMAGE SLIDER SECTION ================== */
.slider-section {
    margin-bottom: 10px;
    width: 100%;
}

.slider-container {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 15px 45px rgba(226, 43, 43, 0.2);
    background: transparent;
}

.slider-wrapper {
    position: relative;
    width: auto;
    background: transparent;
    display: block;
}

.slide {
    position: relative;
    display: none;
    width: auto;
    height: auto;
    opacity: 1;
}

.slide.active {
    display: block;
}

.slide img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    background: transparent;
    border-radius: 6px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(226, 43, 43, 0.6);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgb(226, 58, 43);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot { 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.5); 
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.dot.active { 
    background: rgb(226, 43, 43); 
    transform: scale(1.3); 
}
.dot:hover { 
    background: rgba(255,255,255,0.8); 
}

/* ================== GALLERY SECTION ================== */
.gallery-section {
    margin-bottom: 25px;
    width: 100%;
}

.gallery-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #e22b2b, #ff2600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gallery-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 8px;
}

.gallery-item {
    position: relative;
    width: auto;
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 220px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: transparent;
}

.gallery-item:hover .gallery-overlay { 
    opacity: 1; 
}

.gallery-overlay i { 
    font-size: 2rem; 
    color: white; 
}
.gallery-overlay i.fas.fa-search-plus { 
    display: none; 
}

/* ================== LINKS SECTION ================== */
.links-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.link-card:hover::before {
    opacity: 1;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(226, 43, 43, 0.3);
}

/* Gradient Backgrounds */
.link-card.gradient-1 {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(70, 130, 180, 0.1));
}
.link-card.gradient-1:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(70, 130, 180, 0.2));
}

.link-card.gradient-2 {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 165, 0, 0.1));
}
.link-card.gradient-2:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.4), rgba(255, 165, 0, 0.2));
}

.link-card.gradient-3 {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(255, 69, 0, 0.1));
}
.link-card.gradient-3:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.4), rgba(255, 69, 0, 0.2));
}

.link-card.gradient-4 {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.2), rgba(34, 139, 34, 0.1));
}
.link-card.gradient-4:hover {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.4), rgba(34, 139, 34, 0.2));
}

.link-card.gradient-5 {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(30, 144, 255, 0.1));
}
.link-card.gradient-5:hover {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.4), rgba(30, 144, 255, 0.2));
}

/* Link Content */
.link-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.link-content i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 43, 226, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.link-card:hover .link-content i {
    background: rgba(138, 43, 226, 0.3);
    transform: scale(1.1);
}

.link-content h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: white;
}

.link-content p {
    font-size: 0.85rem;
    color: #b0b0c0;
    font-weight: 400;
}

/* Arrow */
.arrow {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    margin-left: 20px;
}

.link-card:hover .arrow {
    transform: translateX(5px);
    color: rgb(226, 55, 43);
}

/* ================== FOOTER ================== */
.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(226, 43, 43, 0.2);
    color: #879080;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e22b2b;
}

.footer-links span {
    color: #808090;
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 768px) {
    .logo-container {
        width: 240px;
        height: 120px;
        margin-bottom: 15px;
    }

    .logo-glow-1 {
        filter: blur(10px) brightness(1.5);
    }

    .logo-glow-2 {
        filter: blur(18px) brightness(1.3);
    }

    /* Reduce bubble size on mobile */
    .bubble {
        width: calc(var(--size, 8px) * 0.7);
        height: calc(var(--size, 8px) * 0.7);
    }

    .sparkle {
        font-size: 16px;
    }

    .profile-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
        margin-top: -5px;
    }

    .profile-subtitle::after {
        width: 80px;
    }

    .profile-bio {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .slider-section {
        margin-bottom: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .link-card {
        padding: 20px;
    }

    .link-content {
        gap: 15px;
    }

    .link-content i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .link-content h3 {
        font-size: 1rem;
    }

    .link-content p {
        font-size: 0.8rem;
    }

    .arrow {
        font-size: 1.1rem;
        margin-left: 10px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 200px;
        height: 100px;
        margin-bottom: 10px;
    }

    .logo-main img {
        filter: 
            drop-shadow(0 0 15px rgba(255, 0, 0, 0.8))
            drop-shadow(0 0 30px rgba(255, 69, 0, 0.6));
    }

    /* Hide some bubbles on very small screens */
    .bubble-5, .bubble-6, .bubble-7, .bubble-8 {
        display: none;
    }

    .sparkle-2, .sparkle-3 {
        display: none;
    }

    .profile-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
        margin-top: -8px;
    }
    
    .profile-subtitle::after {
        width: 60px;
        height: 2px;
    }

    .container {
        padding: 15px;
    }

    .profile-section {
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .profile-bio {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .social-icons {
        gap: 12px;
        margin-bottom: 0px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .links-section {
        gap: 12px;
        margin-bottom: 30px;
    }

    .slider-section {
        margin-bottom: 10;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }

    .gallery-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .gallery-grid {
        gap: 10px;
    }

    .gallery-overlay i {
        font-size: 1.5rem;
    }

    .link-card {
        padding: 18px 15px;
    }

    .link-content {
        gap: 12px;
    }

    .link-content i {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .link-content h3 {
        font-size: 0.95rem;
    }

    .link-content p {
        display: none;
    }

    .arrow {
        font-size: 1rem;
        margin-left: 5px;
    }

    .footer {
        padding: 20px 10px;
        font-size: 0.8rem;
    }

    .footer p {
        margin-bottom: 0px;
    }

    .footer-links {
        gap: 10px;
    }
}

/* ================== SCROLLBAR STYLING ================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(226, 49, 43, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(226, 43, 43, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(226, 43, 43, 0.5);
}

/* ================== BANNER POPUP STYLES ================== */
.banner-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 500px;
    background: rgba(15, 15, 30, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(226, 43, 43, 0.4);
    border: 2px solid rgba(226, 43, 43, 0.3);
    animation: popupScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.banner-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    background: rgba(226, 43, 43, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.banner-close-btn:hover {
    background: rgba(226, 43, 43, 1);
    transform: rotate(90deg);
}

.banner-popup-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.banner-popup-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.banner-popup-buttons {
    display: flex;
    justify-content: center;
}

.banner-action-btn {
    background: linear-gradient(135deg, #e22b2b, #ff2600);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(226, 43, 43, 0.3);
}

.banner-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 43, 43, 0.5);
    background: linear-gradient(135deg, #ff3333, #ff4000);
}

/* Responsive Popup */
@media (max-width: 768px) {
    .banner-popup-content {
        width: 90%;
        padding: 15px;
    }
    
    .banner-action-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
        max-width: 250px;
    }
    
    .banner-close-btn {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .banner-popup-content {
        width: 95%;
        padding: 12px;
    }
    
    .banner-action-btn {
        padding: 10px 25px;
        font-size: 1rem;
        max-width: 200px;
    }
}

/* ================== FLOATING BUTTON STYLES ================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000 !important;
    padding: 18px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 215, 0, 0.6);
    overflow: hidden;
    animation: floatBtnGlow 3s ease-in-out infinite;
    font-size: 0.95rem;
}

.floating-btn:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffe44d, #ffa500);
    border-color: rgba(255, 255, 255, 0.8);
    padding-right: 30px;
}

.floating-btn i {
    font-size: 1.8rem;
    animation: giftShake 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.floating-btn span {
    display: none;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.floating-btn:hover span {
    display: inline;
    animation: fadeInText 0.3s ease;
}

/* Animations */
@keyframes floatBtnGlow {
    0%, 100% {
        box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
        transform: translateX(0);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.7), 
                    0 0 20px rgba(255, 215, 0, 0.4);
        transform: translateX(5px);
    }
}

@keyframes giftShake {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-15deg) scale(1.1);
    }
    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Floating Button */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        left: 20px;
        padding: 16px 20px;
        font-size: 0.85rem;
    }
    
    .floating-btn i {
        font-size: 1.6rem;
    }
    
    .floating-btn span {
        display: inline !important;
        font-size: 0.8rem;
    }
    
    .floating-btn:hover {
        padding-right: 25px;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        bottom: 15px;
        left: 15px;
        padding: 14px 18px;
        font-size: 0.8rem;
    }
    
    .floating-btn i {
        font-size: 1.4rem;
    }
    
    .floating-btn span {
        font-size: 0.75rem;
    }
    
    .floating-btn span {
        display: none !important;
    }
    
    .floating-btn:hover span {
        display: inline !important;
    }
}

@media (max-width: 360px) {
    .floating-btn {
        padding: 12px 15px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .floating-btn span {
        display: none !important;
    }
    
    .floating-btn:hover {
        border-radius: 50px;
        width: auto;
        padding-right: 20px;
    }
    
    .floating-btn:hover span {
        display: inline !important;
        font-size: 0.7rem;
    }
}