/* ==========================================
   AROMANCE WEBSITE - FIXED CSS (MOBILE OPTIMIZED)
   ========================================== */

@font-face {
    font-family: 'LMMid';
    src: url('Fonts/LMMid.otf') format('opentype');
}

@font-face {
    font-family: 'LMLight';
    src: url('Fonts/LMLight.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'LMLight', Arial, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #f5e09a 200%);
    overflow-x: hidden;
    perspective: 1000px;
    max-width: 100vw;
    position: relative;
}

/* Sprinkle Background - Static and Subtle */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,193,7,0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 60%, rgba(255,235,59,0.02) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,193,7,0.025) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px, 90px 90px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
    animation: logoFloat 2s ease-in-out infinite alternate;
}

.loading-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 10px 20px rgba(255, 193, 7, 0.3));
}

@keyframes logoFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(2deg); }
}

.loading-text {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ffeb3b);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Enhanced Sprinkle Particles System */
#spray-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.spray-particle {
    position: absolute;
    border-radius: 0; /* Square particles */
    opacity: 0.9;
    animation: enhancedSpray 30s linear infinite;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

@keyframes enhancedSpray {
    /* Container 1: Small particles with glow */
    0% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 0.9;
        border: 0px solid transparent;
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
        background: linear-gradient(45deg, #ffc107, #ffeb3b);
    }
    
    /* End of Container 1 */
    25% {
        transform: translateY(25vh) rotate(90deg);
        opacity: 0.8;
        border: 0px solid transparent;
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
        background: linear-gradient(45deg, #ffc107, #ffeb3b);
    }
    
    /* Container 2: Start slowing and growing */
    35% {
        transform: translateY(45vh) rotate(180deg);
        opacity: 0.7;
        border: 1px solid rgba(255, 193, 7, 0.6);
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
        background: linear-gradient(45deg, #ffc107, #ffeb3b);
    }
    
    /* Container 3: Fill starts disappearing, outline appears */
    50% {
        transform: translateY(65vh) rotate(270deg);
        opacity: 0.6;
        border: 2px solid rgba(255, 193, 7, 0.7);
        box-shadow: 0 0 25px rgba(255, 193, 7, 0.7);
        background: rgba(255, 193, 7, 0.3);
    }
    
    /* Container 3 continued: Only outline remains */
    60% {
        transform: translateY(75vh) rotate(360deg);
        opacity: 0.5;
        border: 3px solid rgba(255, 193, 7, 0.8);
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
        background: transparent;
    }
    
    /* Container 4: Thinner outline */
    75% {
        transform: translateY(90vh) rotate(450deg);
        opacity: 0.4;
        border: 2px solid rgba(255, 193, 7, 0.6);
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
        background: transparent;
    }
    
    /* Container 5: Very thin stroke */
    88% {
        transform: translateY(98vh) rotate(520deg);
        opacity: 0.2;
        border: 1px solid rgba(255, 193, 7, 0.3);
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
        background: transparent;
    }
    
    /* Footer: Disappear behind footer */
    95% {
        transform: translateY(105vh) rotate(580deg);
        opacity: 0.1;
        border: 0.5px solid rgba(255, 193, 7, 0.2);
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.2);
        background: transparent;
    }
    
    /* Complete disappearance */
    100% {
        transform: translateY(120vh) rotate(630deg);
        opacity: 0;
        border: 0px solid transparent;
        box-shadow: none;
        background: transparent;
    }
}

/* Main Container */
.main-container {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: hidden;
}

/* Navbar - FIXED FOR MOBILE */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 15px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(100vw - 80px);
    max-width: 1600px;
    transition: all 0.3s ease;
}

.navbar-content:hover {
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.15);
    transform: translateY(-2px);
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.brand-name {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-link {
    font-family: 'LMLight', Arial, sans-serif;
    text-decoration: none;
    color: #555;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ffeb3b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffc107;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.launch-btn {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.launch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.launch-btn::after {
    display: none;
}

.mobile-nav {
    display: none;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.launch-btn-mobile {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 6px;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 20px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: calc(100vw - 40px);
    max-width: 400px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-link {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #ffc107;
}

/* Container 1 - FIXED MOBILE SPACING */
.container-1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 120px; /* Increased top padding */
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    transition: transform 0.1s ease;
}

.title-tab {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-80px);
    position: relative;
    overflow: hidden;
}

/* Multiple Line Animations */
.title-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc107, #ffeb3b, #ffc107, transparent);
    transform: translateY(-50%) translateX(-100%);
    animation: lineFlow1 3s ease-in-out infinite;
    z-index: 1;
}

.title-tab::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #ffc107, #e6ac00, #ffc107, transparent);
    transform: translateY(-50%) translateX(100%);
    animation: lineFlow2 4s ease-in-out infinite 1s;
    z-index: 1;
}

@keyframes lineFlow1 {
    0% {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }
}

@keyframes lineFlow2 {
    0% {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }
}

@keyframes lineFlow3 {
    0% {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }
}

.title-tab.animate {
    animation: slideInFromTop 1s ease-out forwards;
}

@keyframes slideInFromTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap; 
}

.standing-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap; 
}

.solana-logo {
    height: 50px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
    flex-shrink: 0; 
}

.solana-logo:hover {
    filter: brightness(1);
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    width: 100%;
}

.text-tab {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
    position: relative;
    opacity: 0;
    transform: translateX(-80px);
}

.text-tab.animate {
    animation: slideInFromLeft 1s ease-out 0.5s forwards;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-section {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    transform: translateZ(0);
    opacity: 0;
    transform: translateX(80px);
}

.video-section.animate {
    animation: slideInFromRightVideo 1s ease-out 0.8s forwards;
}

@keyframes slideInFromRightVideo {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-tab {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    overflow: hidden;
    width: 100%;
    backdrop-filter: blur(10px);
}

#main-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.main-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 5.5rem;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #333, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.3));
    z-index: 2;
}

.main-title::after {
    content: "↗";
    font-size: 3rem;
    color: #ffc107;
    opacity: 0.8;
    animation: arrowFloat 2s ease-in-out infinite alternate;
}

@keyframes arrowFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5px, -5px) rotate(15deg); }
}

.subtitle {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.3;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.2));
}

.description {
    font-family: 'LMLight', Arial, sans-serif;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 40px 0;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.1));
}

/* Custom Blockchain Icon - OPTIMIZED FOR MOBILE */
.blockchain-icon {
    position: relative;
    width: 140px;
    height: 100px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-tab:hover .blockchain-icon {
    animation: none;
}

.blockchain-icon.mouse-follow {
    transition: transform 0.1s ease-out;
}

.block {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    border-radius: 5px;
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
    border: 1px solid rgba(255, 193, 7, 0.6);
    transition: all 0.3s ease;
}

.block-1 {
    top: 15px;
    left: 15px;
    animation: blockFloat1 3s ease-in-out infinite;
}

.block-2 {
    top: 15px;
    right: 15px;
    animation: blockFloat2 3s ease-in-out infinite 0.5s;
}

.block-3 {
    bottom: 15px;
    left: 15px;
    animation: blockFloat3 3s ease-in-out infinite 1s;
}

.block-4 {
    bottom: 15px;
    right: 15px;
    animation: blockFloat4 3s ease-in-out infinite 1.5s;
}

.connection {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffeb3b);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
    transition: all 0.3s ease;
}

.connection-1 {
    top: 28px;
    left: 45px;
    width: 60px;
    animation: connectionPulse1 2s ease-in-out infinite;
}

.connection-2 {
    bottom: 28px;
    left: 45px;
    width: 60px;
    animation: connectionPulse2 2s ease-in-out infinite 0.7s;
}

.connection-3 {
    left: 28px;
    top: 45px;
    width: 3px;
    height: 40px;
    animation: connectionPulse3 2s ease-in-out infinite 1.4s;
}

@keyframes blockFloat1 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-5px) rotateZ(5deg); }
}

@keyframes blockFloat2 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-3px) rotateZ(-3deg); }
}

@keyframes blockFloat3 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-4px) rotateZ(4deg); }
}

@keyframes blockFloat4 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-6px) rotateZ(-2deg); }
}

@keyframes connectionPulse1 {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes connectionPulse2 {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes connectionPulse3 {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* Container 2 - FIXED TAB WIDTH ISSUES */
.container-2 {
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 40px 80px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.container-2-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
}

.container-2-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    margin-bottom: 60px;
}

.container-2-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 3.2rem;
    margin: 0;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.container-2-title.visible {
    opacity: 1;
    transform: translateX(0);
}

.title-main {
    background: linear-gradient(135deg, #333 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1em;
    opacity: 0;
    transform: translateX(30px);
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
}

.title-sub {
    color: #666;
    font-size: 0.6em;
    margin-top: 5px;
    opacity: 0;
    transform: translateX(30px);
}

.container-2-title.visible .title-main {
    animation: randomizedSlide 1.2s ease-out 0.3s forwards;
}

.container-2-title.visible .title-sub {
    animation: randomizedSlide 1.2s ease-out 0.8s forwards;
}

@keyframes randomizedSlide {
    0% {
        opacity: 0;
        transform: translateX(30px) translateY(-10px) rotate(2deg);
        filter: blur(3px);
    }
    25% {
        transform: translateX(15px) translateY(5px) rotate(-1deg);
        filter: blur(2px);
    }
    50% {
        transform: translateX(-5px) translateY(-3px) rotate(1deg);
        filter: blur(1px);
    }
    75% {
        transform: translateX(3px) translateY(2px) rotate(-0.5deg);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
        filter: blur(0px);
    }
}

.tabs-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    overflow: visible;
}

.service-tab {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
    position: absolute;
    width: min(900px, calc(100vw - 80px)); /* FIXED WIDTH ISSUE */
    max-width: 900px;
    opacity: 0;
    transition: all 0.5s ease;
    display: block;
    transform: translateX(100%);
}

.service-tab.show {
    opacity: 1;
    transform: translateX(0);
}

.tab-content, .tab-content-right {
    position: relative;
    padding-right: 80px;
}

.tab-content-right {
    text-align: right;
    padding-left: 80px;
    padding-right: 20px;
}

.tab-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tab-logo-seller {
    bottom: 20px !important;
    left: 20px !important;
    top: auto !important;
    right: auto !important;
}

.tab-logo-konselor {
    bottom: 20px !important;
    right: 20px !important;
    top: auto !important;
}

.tab-icon-img {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
}

.tab-customer {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.08), rgba(255, 255, 255, 0.95));
    border-color: rgba(255, 255, 0, 0.25);
    top: 0;
    left: 0;
    z-index: 3;
}

.tab-seller {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 255, 255, 0.95));
    border-color: rgba(255, 193, 7, 0.3);
    top: 130px; 
    right: 0;
    z-index: 2;
}

.tab-konselor {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(255, 255, 255, 0.95));
    border-color: rgba(218, 165, 32, 0.25);
    top: 300px; 
    left: 0;
    z-index: 1;
}

.tab-customer:hover .tab-icon-img {
    transform: rotate(90deg) scale(1.3);
}

.tab-seller:hover .tab-logo {
    transform: translateY(-10px);
}

.tab-seller:hover .tab-icon-img {
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.5)) hue-rotate(20deg);
    transform: scale(1.3) rotate(15deg);
    animation: wobble 0.8s ease-in-out;
}

@keyframes wobble {
    0% { transform: scale(1.3) rotate(15deg); }
    25% { transform: scale(1.35) rotate(10deg); }
    50% { transform: scale(1.3) rotate(20deg); }
    75% { transform: scale(1.35) rotate(12deg); }
    100% { transform: scale(1.3) rotate(15deg); }
}

.tab-konselor .tab-icon-img {
    width: 40px;
    height: 40px;
}

.tab-konselor:hover .tab-icon-img {
    transform: scale(1.5);
    filter: drop-shadow(0 4px 12px rgba(218, 165, 32, 0.5)) brightness(1.2);
    animation: pulseGrow 0.6s ease-in-out;
}

@keyframes pulseGrow {
    0% { transform: scale(1); }
    50% { transform: scale(1.6); }
    100% { transform: scale(1.5); }
}

.tab-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 2rem;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aromance-glow {
    background: linear-gradient(135deg, #333 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
    font-size: 1.2em;
    word-break: keep-all; /* FIXED TEXT CUTTING */
    white-space: nowrap;
}

.tab-subtitle {
    color: #333;
    opacity: 0.5;
    font-size: 0.6em;
    white-space: nowrap;
}

.tab-heading {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.3;
    max-width: 400px; /* INCREASED MAX WIDTH */
}

.tab-text {
    font-family: 'LMLight', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    max-width: 600px; /* INCREASED MAX WIDTH */
}

.tab-content-right .tab-heading {
    margin-left: auto;
}

.tab-content-right .tab-text {
    margin-left: auto;
}

/* Container 3 */
.container-3 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 80px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.container-3-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.1s ease;
}

.manifesto-tab {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px 50px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.4);
    backdrop-filter: blur(15px);
    width: 100%;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
    position: relative;
    overflow: hidden;
}

.manifesto-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffeb3b, #ffc107);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.manifesto-tab.visible {
    opacity: 1;
    transform: translateY(0);
}

.manifesto-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

.manifesto-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.05);
}

.manifesto-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 3.5rem;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #333 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.3));
    position: relative;
    text-align: center;
}

.manifesto-title::after {
    content: "✨";
    position: absolute;
    top: -15px;
    right: -50px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

.manifesto-right {
    flex: 1;
}

.manifesto-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.manifesto-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
}

.manifesto-tab.visible .manifesto-point {
    opacity: 1;
    transform: translateX(0);
}

.manifesto-tab.visible .manifesto-point[data-index="0"] { transition-delay: 0.2s; }
.manifesto-tab.visible .manifesto-point[data-index="1"] { transition-delay: 0.4s; }
.manifesto-tab.visible .manifesto-point[data-index="2"] { transition-delay: 0.6s; }
.manifesto-tab.visible .manifesto-point[data-index="3"] { transition-delay: 0.8s; }
.manifesto-tab.visible .manifesto-point[data-index="4"] { transition-delay: 1.0s; }

.point-icon {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.point-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b, #ffc107);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.manifesto-point:hover .point-icon::before {
    opacity: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
        transform: scale(1.05);
    }
}

.manifesto-point:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
}

.custom-emoji {
    width: 24px;
    height: 24px;
    fill: white;
    transition: all 0.3s ease;
}

.manifesto-point:hover .custom-emoji {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.point-content {
    flex: 1;
}

.point-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #333 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.point-description {
    font-family: 'LMLight', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Container 4 */
.container-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 100px;
    width: 100%;
    max-width: 100vw;
    background: transparent;
    overflow: hidden;
}

.cta-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    padding: 50px 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(20px);
    width: 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffeb3b, #ffc107);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cta-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 3rem;
    color: #333;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #333 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.3));
}

.cta-subtitle {
    font-family: 'LMLight', Arial, sans-serif;
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.cta-button {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container.fallback::after {
    content: "📱 Bergabung Sekarang";
    color: white;
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-img:hover {
    transform: scale(1.05);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.1));
    z-index: 1;
    pointer-events: none;
}

/* Sponsors Section - PERFORMANCE OPTIMIZED */
.sponsors-section {
    padding: 60px 0 40px;
    background: transparent;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.sponsors-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.5rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sponsors-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.sponsors-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0) translateX(0);
    animation: optimizedScroll 20s linear infinite;
}

/* OPTIMIZED ANIMATION - NO MORE FREEZING */
@keyframes optimizedScroll {
    0% {
        transform: translateZ(0) translateX(0);
    }
    100% {
        transform: translateZ(0) translateX(-50%);
    }
}

.sponsor-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    flex-shrink: 0;
    will-change: transform;
    transform: translateZ(0);
}

.sponsor-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.sponsor-logo-large {
    height: 50px;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.sponsor-text {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.2rem;
    color: #555;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-text {
    color: #ffc107;
    transform: translateY(-2px);
}

/* Pause animation on hover */
.sponsors-track:hover {
    animation-play-state: paused;
}

/* Container 5 - Founders & Team */
.container-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.founders-tab {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 50px 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 1600px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
    position: relative;
    overflow: hidden;
}

.founders-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffeb3b, #ffc107);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.founders-tab.visible {
    opacity: 1;
    transform: translateY(0);
}

.founders-header {
    text-align: center;
    margin-bottom: 50px;
}

.founders-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 3rem;
    color: white;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.3));
    text-transform: uppercase;
    letter-spacing: 2px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

.founder-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.founder-card:hover {
    border-color: rgba(255, 193, 7, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
}

.founder-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.founder-photo:hover {
    border-color: rgba(255, 193, 7, 0.8);
    transform: scale(1.05);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.founder-photo.placeholder {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo.placeholder::after {
    content: "👤";
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 193, 7, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.founder-photo:hover .founder-overlay {
    opacity: 1;
}

.founder-photo:hover .founder-img {
    transform: scale(1.1);
    filter: blur(2px);
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.instagram-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.founder-info {
    text-align: center;
}

.founder-name {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.4rem;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.founder-role {
    font-family: 'LMLight', Arial, sans-serif;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

/* Updates Section */
.updates-section {
    padding: 80px 0;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.updates-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.updates-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.updates-title {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 40px 0;
    background: linear-gradient(135deg, #333 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.3));
}

.subscribe-button {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-button:hover::before {
    left: 100%;
}

.subscribe-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
}

.subscribe-button:active {
    transform: translateY(-2px) scale(1.02);
}

.subscribe-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.subscribe-link:hover {
    transform: scale(1.02);
}

.subscribe-button {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block; /* Baru: Ensure proper display */
    width: auto; /* Baru: Auto width */
}

.subscribe-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-button:hover::before {
    left: 100%;
}

.subscribe-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
}

.subscribe-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px 30px 0 0;
    padding: 50px 60px 30px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-bottom: none;
    backdrop-filter: blur(20px);
    width: 100%;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffeb3b, #ffc107);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    transform: scale(1.05);
}

.footer-logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: rotate(10deg) scale(1.1);
}

.footer-brand-text {
    font-family: 'LMMid', Arial, sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-brand-text.randomizing {
    color: #ffc107;
    letter-spacing: 2px;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
    margin-left: 52px;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    font-family: 'LMLight', Arial, sans-serif;
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ffeb3b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover {
    color: #ffc107;
    transform: translateY(-2px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.footer-social:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
}

.footer-social-icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

/* MOBILE RESPONSIVE - FIXED ALL ISSUES */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container-2-wrapper {
        align-items: center;
    }
    
    .container-2-header {
        justify-content: center;
        padding-right: 0;
    }
    
    .tabs-container {
        align-items: center;
        height: auto;
        padding-left: 0;
    }
    
    .service-tab {
        position: relative !important;
        width: 95% !important;
        max-width: 95% !important;
        left: auto !important;
        top: auto !important;
        margin-bottom: 20px;
        transform: none !important;
    }
    
    .tab-content, .tab-content-right {
        padding-right: 20px;
        padding-left: 20px;
        text-align: left;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .container-2-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .manifesto-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .manifesto-left {
        order: 1;
    }
    
    .manifesto-right {
        order: 2;
    }
    
    .manifesto-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-text {
        order: 1;
    }
    
    .cta-image {
        order: 2;
    }
}

/* MOBILE FIXES - CRITICAL */
@media (max-width: 768px) {
    /* NAVBAR MOBILE FIXES */
    .navbar-content {
        width: calc(100vw - 20px); /* REDUCED MARGIN */
        padding: 10px 20px; /* REDUCED PADDING */
        gap: 20px; /* REDUCED GAP */
        min-height: auto;
    }
    
    .nav-links {
        display: none;
    }
    
    .subtitle-with-logo {
        gap: 8px;
        margin-top: 12px;
        flex-direction: column; 
        align-items: center;
    }
    
    .standing-text {
        font-size: 1rem; 
        text-align: center;
    }
    
    .solana-logo {
        height: 60px; 
    }

    .mobile-nav {
        display: flex;
    }
    
    .mobile-menu {
        width: calc(100vw - 20px);
        top: 70px; /* ADJUSTED FOR SMALLER NAVBAR */
    }
    
    .brand-name {
        font-size: 16px; /* SMALLER FONT */
    }
    
    .logo {
        width: 28px; /* SMALLER LOGO */
        height: 28px;
    }
    
    /* CONTAINER 1 MOBILE FIXES */
    .container-1 {
        padding: 120px 15px 100px; /* INCREASED TOP PADDING */
    }
    
    .updates-section {
        padding: 40px 15px;
    }
    
    .updates-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .subscribe-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .content-wrapper {
        gap: 20px;
    }
    
    .main-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        order: 2;
    }
    
    .title-tab {
        order: 1;
        padding: 20px 20px; /* REDUCED PADDING */
    }
    
    .video-section {
        order: 2;
    }
    
    .text-tab {
        order: 3;
        padding: 25px 20px; /* REDUCED PADDING */
    }
    
    .main-title {
        font-size: 2.5rem; /* SMALLER TITLE */
        flex-direction: column;
        gap: 10px;
    }
    
    .main-title::after {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    /* BLOCKCHAIN ICON MOBILE FIXES */
    .blockchain-icon {
        width: 100px;
        height: 70px;
    }
    
    .block {
        width: 20px;
        height: 20px;
    }
    
    .connection-1, .connection-2 {
        width: 40px;
    }
    
    .connection-3 {
        width: 2px;
        height: 25px;
    }
    
    .video-tab {
        padding: 15px;
    }
    
    #main-video {
        height: 250px;
    }
    
    /* CONTAINER 2 MOBILE FIXES */
    .container-2 {
        padding: 40px 15px 60px;
    }
    
    .container-2-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .service-tab {
        width: calc(100vw - 30px) !important; /* FULL WIDTH MOBILE */
        max-width: calc(100vw - 30px) !important;
        padding: 20px 15px !important;
    }
    
    .tab-title {
        font-size: 1.2rem;
    }
    
    .aromance-glow {
        font-size: 1em; /* PREVENT TEXT CUTTING */
        white-space: normal;
        word-break: normal;
    }
    
    .tab-subtitle {
        white-space: normal;
    }
    
    .tab-heading {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .tab-text {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .tab-logo-seller,
    .tab-logo-konselor {
        position: static !important;
        margin: 15px auto 0;
    }
    
    /* CONTAINER 3 MOBILE FIXES */
    .container-3 {
        padding: 60px 15px 60px;
    }
    
    .manifesto-tab {
        padding: 25px 15px;
    }
    
    .manifesto-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .manifesto-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .manifesto-points {
        gap: 20px;
    }
    
    .manifesto-point {
        padding: 15px;
    }
    
    .point-icon {
        min-width: 35px;
        height: 35px;
    }
    
    .custom-emoji {
        width: 18px;
        height: 18px;
    }
    
    .point-title {
        font-size: 1rem;
    }
    
    .point-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* CONTAINER 4 MOBILE FIXES */
    .cta-section {
        padding: 30px 15px;
    }
    
    .cta-content {
        padding: 0 15px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.8rem;
        align-self: center;
    }
    
    .image-container {
        height: 200px;
        max-width: 280px;
    }
    
    /* SPONSORS SECTION MOBILE */
    .sponsors-section {
        padding: 30px 0 40px;
    }
    
    .sponsors-title {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .sponsors-track {
        gap: 40px;
    }
    
    .sponsor-item {
        gap: 10px;
    }
    
    .sponsor-logo {
        height: 40px;
    }
    
    .sponsor-logo-large {
        height: 30px;
    }
    
    .sponsor-text {
        font-size: 0.9rem;
    }
    
    /* CONTAINER 5 MOBILE FIXES */
    .container-5 {
        padding: 40px 15px 40px;
    }
    
    .founders-tab {
        padding: 25px 15px;
    }
    
    .founders-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .founders-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .founder-card {
        padding: 15px;
    }
    
    .founder-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .founder-name {
        font-size: 0.9rem;
    }
    
    .founder-role {
        font-size: 0.7rem;
    }
    
    .instagram-link {
        width: 40px;
        height: 40px;
    }
    
    .instagram-icon {
        width: 18px;
        height: 18px;
    }
    
    /* UPDATES & FOOTER MOBILE */
    .updates-section {
        padding: 40px 15px;
    }
    
    .updates-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .subscribe-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 25px 15px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        order: 1;
        align-items: center;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-right {
        order: 3;
        justify-content: center;
    }
    
    .footer-copyright {
        margin-left: 0;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-brand-text {
        font-size: 16px;
    }
    
    .footer-logo {
        width: 28px;
        height: 28px;
    }
    
    .footer-social {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-link {
        font-size: 13px;
    }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {
    .navbar-content {
        width: calc(100vw - 15px);
        padding: 8px 15px;
        gap: 15px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .logo {
        width: 24px;
        height: 24px;
    }
    
    .launch-btn-mobile {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .hamburger-menu {
        padding: 4px;
    }
    
    .hamburger-menu span {
        width: 18px;
        height: 2px;
    }
    
    .container-1 {
        padding: 110px 10px 80px;
    }
    
    .subtitle-with-logo {
        gap: 6px;
        margin-top: 10px;
    }
    
    .standing-text {
        font-size: 0.9rem; 
    }
    
    .solana-logo {
        height: 45px; 
    }

    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .title-tab {
        padding: 15px;
    }
    
    .text-tab {
        padding: 20px 15px;
    }
    
    .video-tab {
        padding: 10px;
    }
    
    #main-video {
        height: 200px;
    }
    
    .blockchain-icon {
        width: 80px;
        height: 60px;
    }
    
    .block {
        width: 16px;
        height: 16px;
    }
    
    .updates-title {
        font-size: 1.2rem;
    }
    
    .subscribe-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .container-2-title {
        font-size: 1.4rem;
    }
    
    .service-tab {
        padding: 15px 10px !important;
    }
    
    .tab-title {
        font-size: 1rem;
    }
    
    .tab-heading {
        font-size: 0.8rem;
    }
    
    .tab-text {
        font-size: 0.75rem;
    }
    
    .manifesto-title {
        font-size: 1.5rem;
    }
    
    .point-title {
        font-size: 0.9rem;
    }
    
    .point-description {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-subtitle {
        font-size: 0.85rem;
    }
    
    .image-container {
        height: 180px;
        max-width: 250px;
    }
    
    .founders-title {
        font-size: 1.4rem;
    }
    
    .founder-photo {
        width: 70px;
        height: 70px;
    }
    
    .founder-name {
        font-size: 0.8rem;
    }
    
    .founder-role {
        font-size: 0.65rem;
    }
    
    .updates-title {
        font-size: 1.2rem;
    }
    
    .footer-brand-text {
        font-size: 14px;
    }
    
    .footer-logo {
        width: 24px;
        height: 24px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
}