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

:root {
    --bg-dark: #0a0e27;
    --bg-card: rgba(15, 20, 40, 0.8);
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --pink: #c026d3;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(192, 38, 211, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    animation: backgroundShift 30s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle, rgba(139, 92, 246, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(192, 38, 211, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 
        200px 200px,
        150px 150px,
        100px 100px;
    background-position: 
        0 0,
        50px 50px,
        25px 25px;
    animation: stars 60s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundShift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes stars {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100px, -100px);
    }
}


body > * {
    position: relative;
    z-index: 1;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 2rem;
    background: rgba(15, 20, 40, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 60px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.navbar.scrolled .nav-container {
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    background: rgba(15, 20, 40, 0.7);
    gap: 1.2rem;
    transform: scaleY(0.92);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo {
    height: 42px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-logo {
    height: 36px;
}

.nav-name {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.navbar.scrolled .nav-name {
    font-size: 1rem;
}

.nav-facebook {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 
        0 3px 12px rgba(24, 119, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-facebook i {
    font-size: 1.05rem;
}

.nav-facebook:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(24, 119, 242, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-facebook {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.navbar.scrolled .nav-facebook i {
    font-size: 0.95rem;
}


@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        margin: 0 1rem;
        padding: 0.6rem 1.2rem;
        gap: 1rem;
    }
    
    .navbar.scrolled .nav-container {
        padding: 0.5rem 1rem;
        gap: 0.8rem;
    }
    
    .nav-logo {
        height: 36px;
    }
    
    .navbar.scrolled .nav-logo {
        height: 32px;
    }
    
    .nav-name {
        font-size: 1rem;
    }
    
    .navbar.scrolled .nav-name {
        font-size: 0.9rem;
    }
    
    .nav-facebook {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .navbar.scrolled .nav-facebook {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    
    .features {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding: 2rem 1rem !important;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
        max-width: 100% !important;
        justify-content: flex-start !important;
    }
    
    .feature {
        flex: 0 0 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
        width: 85vw !important;
        scroll-snap-align: center;
        padding: 3rem 2rem !important;
    }
    
    .services-card {
        padding: 3rem 1rem 3rem !important;
    }
    
    
    .features::-webkit-scrollbar {
        height: 6px;
    }
    
    .features::-webkit-scrollbar-track {
        background: rgba(139, 92, 246, 0.1);
        border-radius: 3px;
        margin: 0 1rem;
    }
    
    .features::-webkit-scrollbar-thumb {
        background: rgba(139, 92, 246, 0.5);
        border-radius: 3px;
    }
    
    .features::-webkit-scrollbar-thumb:hover {
        background: rgba(139, 92, 246, 0.7);
    }
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    contain: layout style;
}

.about-card {
    text-align: center;
    margin-bottom: 5rem;
    padding: 4rem 3rem;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--purple) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 28px 0 0 0;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 30%, var(--pink) 100%);
    opacity: 0.3;
    border-radius: 0 0 28px 0;
}

.about-card .subtitle {
    color: var(--purple-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.about-content {
    text-align: left;
    line-height: 2;
    color: var(--text-dim);
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    position: relative;
}

.about-content p {
    margin-bottom: 2rem;
}

.about-content strong {
    color: var(--purple-light);
    font-weight: 600;
}

.payment-section {
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2.5rem 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.payment-track {
    display: inline-flex;
    gap: 3rem;
    animation: infiniteScroll 45s linear infinite;
    will-change: transform;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.payment-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.payment-logo:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 20px rgba(139, 92, 246, 0.5));
}

@media (max-width: 768px) {
    .payment-logo {
        width: 90px;
        height: 90px;
    }
    
    .payment-track {
        gap: 2rem;
        animation: infiniteScroll 35s linear infinite;
    }
    
    .payment-title {
        font-size: 2rem;
    }
}

.hero-frame {
    position: relative;
    z-index: 3;
    width: 98%;
    max-width: 1800px;
    min-height: 85vh;
    margin: 6rem auto 0;
    background: rgba(15, 20, 40, 0.92);
    border-radius: 40px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    contain: layout style paint;
    will-change: opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('./image/background.gif') center/cover no-repeat;
    z-index: 0;
    border-radius: 38px;
    will-change: auto;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    content-visibility: auto;
}

.hero-frame[style*="visibility: hidden"] .hero-bg {
    background: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.4) 0%,
        rgba(10, 14, 39, 0.7) 100%);
    z-index: 1;
    border-radius: 38px;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    contain: strict;
    will-change: auto;
    opacity: 0.6;
}

.particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--purple-light);
    border-radius: 50%;
    animation: float 25s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 25%; animation-delay: 5s; }
.particles span:nth-child(3) { left: 40%; animation-delay: 10s; }
.particles span:nth-child(4) { left: 55%; animation-delay: 15s; }
.particles span:nth-child(5) { left: 70%; animation-delay: 20s; }
.particles span:nth-child(6) { left: 85%; animation-delay: 3s; }

@keyframes float {
    0% {
        transform: translate3d(0, 100vh, 0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--purple-light) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.8s ease;
    text-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
    letter-spacing: -2px;
}

.hero-character {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(30%);
    z-index: 10;
    width: 100%;
    max-width: 650px;
    pointer-events: none;
    transition: transform 0.05s linear;
    contain: layout style;
    will-change: transform;
    backface-visibility: hidden;
    content-visibility: auto;
}

.hero-character img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.3));
    animation: fadeInUp 1.2s ease 0.4s both;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    decoding: async;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main {
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1229 100%);
    padding: 100px 20px;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.main::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.main .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.4;
    z-index: -1;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 4rem 3.5rem;
    margin-bottom: 5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.services-card {
    background: none;
    padding: 7rem 3rem 5rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.services-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.services-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./image/roblox-bg.png') center/cover;
    filter: brightness(0.25);
    z-index: 0;
}

.services-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.5) 0%,
        rgba(192, 38, 211, 0.4) 50%,
        rgba(139, 92, 246, 0.5) 100%);
    z-index: 1;
}

.services-card * {
    position: relative;
    z-index: 2;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.15);
}

.title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.text p {
    margin-bottom: 1rem;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.text p:last-child {
    margin-bottom: 0;
}


.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 380px));
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 4rem;
    justify-content: center;
}

.feature {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: rgba(15, 18, 40, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature:hover {
    transform: translateY(-8px);
    background: rgba(20, 25, 50, 0.95);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.4),
        0 0 80px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.4) 0%, 
        rgba(192, 38, 211, 0.4) 100%);
    border-radius: 28px;
    border: 2px solid rgba(168, 85, 247, 0.5);
    box-shadow: 
        0 10px 40px rgba(139, 92, 246, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.6), 
        rgba(192, 38, 211, 0.6));
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.feature:hover .icon {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.6) 0%, 
        rgba(192, 38, 211, 0.6) 100%);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 
        0 15px 60px rgba(139, 92, 246, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.feature:hover .icon::before {
    opacity: 1;
}

.icon i {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.8));
    transition: all 0.4s ease;
}

.feature:hover .icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(168, 85, 247, 1));
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.feature p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.cta {
    text-align: center;
    padding: 4rem 3rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.6);
}

.btn:active {
    transform: translateY(-1px) scale(1);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn i:first-child {
    font-size: 1.5rem;
}

.btn:hover i:last-child {
    transform: translateX(5px);
}

.footer {
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.95) 0%,
        rgba(5, 8, 20, 1) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--purple-light);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(139, 92, 246, 0.5) 50%,
        transparent 100%);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-credit {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.footer-credit .highlight {
    color: var(--purple-light);
    font-weight: 600;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 968px) {
    .card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .services-card {
        padding: 3rem 2rem;
    }

    .cta {
        padding: 3rem 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple), var(--pink));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--purple-light), var(--pink));
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 4rem 1rem 2rem;
    }
    
    .hero-frame {
        min-height: 75vh;
        margin: 4rem auto 0;
        width: 95%;
        border-radius: 30px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        letter-spacing: -1px;
    }
    
    .main {
        padding: 60px 15px;
    }
    
    .container {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 3rem;
        border-radius: 20px;
    }
    
    .about-card {
        padding: 3rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .about-card::before,
    .about-card::after {
        width: 60px;
        height: 60px;
    }
    
    .title {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .about-content {
        font-size: 0.95rem;
        line-height: 1.8;
        max-width: 100%;
    }
    
    .about-content p {
        margin-bottom: 1.5rem;
    }
    
    .services-card {
        padding: 3rem 1rem 3rem !important;
        margin-bottom: 3rem !important;
    }
    
    .services-card .title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
    }
    
    .icon {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 1.5rem !important;
    }
    
    .icon i {
        font-size: 2.5rem !important;
    }
    
    .feature h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .feature p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .payment-section {
        padding: 4rem 0 !important;
        margin-bottom: 2rem !important;
    }
    
    .payment-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
    }
    
    .payment-slider {
        padding: 2rem 0;
    }
    
    .payment-track {
        gap: 1.5rem !important;
    }
    
    .payment-logo {
        width: 70px !important;
        height: 70px !important;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-credit,
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .nav-facebook span {
        display: none;
    }
    
    .nav-facebook {
        padding: 0.5rem !important;
    }
    
    .nav-facebook i {
        font-size: 1.1rem !important;
        margin: 0 !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .hero-frame {
        min-height: 80vh;
        margin: 5rem auto 0;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .main {
        padding: 80px 20px;
    }
    
    .card {
        padding: 3rem 2rem;
    }
    
    .about-card {
        padding: 3.5rem 2rem;
    }
    
    .title {
        font-size: 2rem !important;
    }
    
    .payment-logo {
        width: 80px !important;
        height: 80px !important;
    }
}

@media (max-width: 480px) {
    .services-card {
        padding: 3rem 0.5rem 3rem !important;
    }
    
    .features {
        padding: 2rem 0.5rem !important;
    }
    
    .feature {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 2rem 1.5rem !important;
        margin: 0 !important;
    }
    
    .feature {
        flex: 0 0 calc(100vw - 4rem) !important;
        min-width: calc(100vw - 4rem) !important;
        max-width: calc(100vw - 4rem) !important;
        width: calc(100vw - 4rem) !important;
    }
    
    .services-card {
        padding: 3rem 0 3rem !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .features {
        padding: 2rem 1.5rem !important;
    }
    
    .feature {
        flex: 0 0 calc(85vw - 2rem) !important;
        min-width: calc(85vw - 2rem) !important;
        max-width: calc(85vw - 2rem) !important;
        width: calc(85vw - 2rem) !important;
    }
}
