@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ROOT VARIABLES */
:root {
    --themeColor: #04E1F9;
    --primaryColor: #004A90;
    --secondaryColor: #FFDE59;
    --grayColor: #737373;
    --white: #fff;
    --black: #000;
    --textLight: #E0E0E0;
    --borderColor: #343B4F;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1128 100%) !important;
    background-attachment: fixed;
    color: var(--textLight);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

/* Animated Robot Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(4, 225, 249, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 74, 144, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 222, 89, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bg-pulse 15s ease-in-out infinite;
}

@keyframes bg-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Floating Robot Icons Background */
.robot-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    max-width: 100vw;
}

.robot-icon-float {
    position: absolute;
    font-size: 2rem;
    color: rgba(4, 225, 249, 0.05);
    animation: float-robot 20s infinite ease-in-out;
    will-change: transform;
}

.robot-icon-float:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.robot-icon-float:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.robot-icon-float:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 6s;
    animation-duration: 28s;
}

.robot-icon-float:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 9s;
    animation-duration: 32s;
}

.robot-icon-float:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 26s;
}

.robot-icon-float:nth-child(6) {
    top: 85%;
    left: 30%;
    animation-delay: 15s;
    animation-duration: 29s;
}

@keyframes float-robot {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.05;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.08;
    }
    50% {
        transform: translate(-15px, 20px) rotate(180deg);
        opacity: 0.05;
    }
    75% {
        transform: translate(25px, 15px) rotate(270deg);
        opacity: 0.08;
    }
}

/* Circuit Lines Background */
.circuit-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    overflow: hidden;
    max-width: 100vw;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
    height: 1px;
    animation: circuit-flow 8s linear infinite;
    max-width: 100%;
}

.circuit-line:nth-child(1) {
    top: 15%;
    width: 40%;
    left: 0;
    animation-delay: 0s;
}

.circuit-line:nth-child(2) {
    top: 35%;
    width: 50%;
    right: 0;
    animation-delay: 2s;
}

.circuit-line:nth-child(3) {
    top: 55%;
    width: 45%;
    left: 10%;
    animation-delay: 4s;
}

.circuit-line:nth-child(4) {
    top: 75%;
    width: 35%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes circuit-flow {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Ensure content is above background */
.navbar,
section,
footer {
    position: relative;
    z-index: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    border-left: 1px solid rgba(4, 225, 249, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
    border-radius: 10px;
    border: 2px solid rgba(13, 17, 40, 0.5);
    box-shadow: 0 0 10px rgba(4, 225, 249, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primaryColor) 0%, var(--themeColor) 100%);
    box-shadow: 0 0 20px rgba(4, 225, 249, 0.8);
    border-color: rgba(4, 225, 249, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: var(--themeColor);
    box-shadow: 0 0 25px rgba(4, 225, 249, 1);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--themeColor) #0a0e27;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1260px !important;
    margin: 0 auto;
    padding: 0 16px !important;
}

/* Prevent all sections from overflowing */
section {
    overflow-x: hidden;
}
a{
  text-decoration: none !important;
}
/* NAVBAR */
.navbar {
    background: rgba(13, 17, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(4, 225, 249, 0.2);
    position: fixed !important;
    top: 0;
    z-index: 1000;
    will-change: auto;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.navbar .container {
    max-width: 100%;
}

/* Remove ALL Bootstrap Transitions and Effects */
.navbar *,
.navbar *::before,
.navbar *::after {
    transition: none !important;
}

.navbar-nav .nav-link,
.navbar-brand,
.btn-primary-custom,
.btn-outline-custom {
    transition: all 0.3s ease !important;
}

.navbar-collapse {
    transition: none !important;
}

.navbar-collapse.collapsing {
    transition: none !important;
    display: none;
}

.navbar-collapse.show {
    display: block !important;
}

/* Remove Bootstrap Default Focus Effects */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-toggler:focus,
.navbar-toggler:active,
a:focus,
a:active,
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Navbar Brand/Logo with Animation */
.navbar-brand {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease !important;
}

.navbar-brand:focus,
.navbar-brand:active {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-brand:hover {
    border: 2px solid rgba(4, 225, 249, 0.5);
    box-shadow: 0 0 20px rgba(4, 225, 249, 0.3);
}

.navbar-brand .logo {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(4, 225, 249, 0.3));
    transition: all 0.3s ease !important;
    animation: logo-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(4, 225, 249, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(4, 225, 249, 0.6));
    }
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(4, 225, 249, 0.8));
    animation: none;
}

.nav-link {
    color: var(--textLight) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav-link:focus,
.nav-link:active {
    outline: none !important;
    box-shadow: none !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--themeColor), var(--secondaryColor));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--themeColor) !important;
    background: rgba(4, 225, 249, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
    border: 1px solid rgba(4, 225, 249, 0.4);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(4, 225, 249, 0.3);
}

.nav-link.active::before {
    width: 80%;
    height: 3px;
    animation: active-link-glow 2s ease-in-out infinite;
}

@keyframes active-link-glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--themeColor);
    }
    50% {
        box-shadow: 0 0 15px var(--themeColor);
    }
}

/* Navbar Buttons */
.navbar-buttons {
    display: flex;
    gap: 0.8rem;
    margin-left: 1.5rem;
}

/* Login Button - Continuous Pulse Animation */
.btn-outline-custom {
    border: 2px solid var(--themeColor);
    color: var(--themeColor);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: btn-pulse-border 2s ease-in-out infinite;
}

@keyframes btn-pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(4, 225, 249, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(4, 225, 249, 0);
    }
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--themeColor);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-outline-custom:hover {
    color: var(--white);
    border-color: var(--themeColor);
    transform: translateY(-3px) scale(1.05);
    animation: none;
}

.btn-outline-custom:hover::before {
    width: 300px;
    height: 300px;
}

/* Register Button - Continuous Gradient Shift + Glow */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 50%, var(--themeColor) 100%);
    background-size: 200% 200%;
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: btn-gradient-shift 3s ease infinite, btn-glow-pulse 2s ease-in-out infinite;
}

@keyframes btn-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes btn-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(4, 225, 249, 0.5), 0 0 20px rgba(4, 225, 249, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(4, 225, 249, 0.8), 0 0 30px rgba(4, 225, 249, 0.5);
    }
}

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.05);
    color: var(--white);
    animation: btn-gradient-shift 1.5s ease infinite, btn-glow-pulse 1s ease-in-out infinite;
}

/* Shine Effect on Register Button */
.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    animation: btn-shine 4s infinite;
}

@keyframes btn-shine {
    0% {
        transform: rotateZ(60deg) translate(-5em, 7.5em);
    }
    100% {
        transform: rotateZ(60deg) translate(12em, -10em);
    }
}

.btn-primary-custom:active,
.btn-outline-custom:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-outline-custom:hover {
    background: var(--themeColor);
    color: var(--white);
}

/* MISSION & VISION */
.mission-vision-section {
    padding:  clamp(3.125rem, 2.7453rem + 1.8987vw, 5rem) 0;
}
.hero-section {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Animated Background */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
    border-radius: 50%;
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
    border: 2px solid rgba(4, 225, 249, 0.3);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1.5rem;
    animation: badge-pulse 2s infinite;
}

.hero-badge i {
    color: var(--themeColor);
    font-size: 1.2rem;
    animation: robot-wave 1.5s infinite;
}

.hero-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(4, 225, 249, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(4, 225, 249, 0);
    }
}

@keyframes robot-wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

.gradient-text {
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--themeColor);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--textLight);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Text Animations */
.animate-text {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-text-delay-1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-text-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-text-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.animate-text-delay-4 {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

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

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before,
.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before,
.btn-outline-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom span,
.btn-outline-custom span {
    position: relative;
    z-index: 1;
}

.btn-primary-custom i,
.btn-outline-custom i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

.btn-outline-custom:hover i {
    transform: scale(1.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
    border: 1px solid rgba(4, 225, 249, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--themeColor);
    box-shadow: 0 10px 30px rgba(4, 225, 249, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.stat-info h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.stat-info p {
    color: var(--textLight);
    font-size: 0.9rem;
    margin: 0;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* MISSION & VISION */
.mission-vision-section {
    padding:  clamp(3.125rem, 2.7453rem + 1.8987vw, 5rem) 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
    border: 1px solid rgba(4, 225, 249, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(4, 225, 249, 0.5);
    box-shadow: 0 10px 40px rgba(4, 225, 249, 0.3);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper svg {
    color: var(--white);
}

.section-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    color: var(--textLight);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--textLight);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--themeColor);
    font-weight: bold;
}

/* INCOME SECTION */
.income-section {
    padding:  clamp(3.125rem, 2.7453rem + 1.8987vw, 5rem) 0;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--textLight);
    margin-bottom: 3rem;
    text-align: center;
}

.income-card {
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
    border: 2px solid rgba(4, 225, 249, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.income-card:hover {
    transform: translateY(-10px);
    border-color: var(--themeColor);
    box-shadow: 0 15px 40px rgba(4, 225, 249, 0.4);
}

.income-card.featured {
    border-color: var(--secondaryColor);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondaryColor);
    color: var(--black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.income-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.income-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.income-rate {
    font-size: 1.5rem;
    color: var(--themeColor);
    font-weight: 700;
    margin-bottom: 1rem;
}

.income-description {
    color: var(--textLight);
}

/* BONUSES SECTION */
.bonuses-section {
    padding:  clamp(3.125rem, 2.7453rem + 1.8987vw, 5rem) 0;
    background: rgba(0, 0, 0, 0.2);
}

.bonus-card {
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
    border: 2px solid rgba(4, 225, 249, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--themeColor);
    box-shadow: 0 10px 40px rgba(4, 225, 249, 0.3);
}

.bonus-title {
    font-size: 1.5rem;
    color: var(--themeColor);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.bonus-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(4, 225, 249, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(4, 225, 249, 0.1);
    transition: all 0.3s ease;
}

.bonus-row:hover {
    background: rgba(4, 225, 249, 0.1);
    border-color: rgba(4, 225, 249, 0.3);
    transform: translateX(5px);
}

.bonus-amount {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-percentage {
    color: var(--secondaryColor);
    font-weight: 700;
    font-size: 1.3rem;
}

.anniversary-gift {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.1) 0%, rgba(4, 225, 249, 0.1) 100%);
    border: 2px solid var(--secondaryColor);
    border-radius: 20px;
    padding: 2rem 3rem;
    margin-top: 2rem;
}

.gift-icon {
    font-size: 3rem;
}

.anniversary-gift h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.anniversary-gift p {
    color: var(--secondaryColor);
    margin: 0;
    font-weight: 600;
}

/* RANKS SECTION */
.ranks-section {
    padding: clamp(3.125rem, 2.7453rem + 1.8987vw, 5rem) 0;
}

.table-responsive {
    margin-top: 2rem;
    overflow-x: auto;
}

.rank-table {
    width: 100%;
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(4, 225, 249, 0.2);
}

.rank-table thead {
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
}

.rank-table th {
    padding: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    border: none;
}

.rank-table td {
    padding: 1.5rem;
    color: var(--textLight);
    text-align: center;
    border-bottom: 1px solid rgba(4, 225, 249, 0.1);
}

.rank-table tbody tr:hover {
    background: rgba(4, 225, 249, 0.05);
}

.rank-badge {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.rank-badge.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    color: var(--black);
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--black);
}

.rank-badge.pearl {
    background: linear-gradient(135deg, #F0EAD6 0%, #DDA0DD 100%);
    color: var(--black);
}

.rank-badge.topaz {
    background: linear-gradient(135deg, #FFCC00 0%, #FF9900 100%);
    color: var(--black);
}

.rank-badge.sapphire {
    background: linear-gradient(135deg, #0F52BA 0%, #082567 100%);
    color: var(--white);
}

.rank-badge.emerald {
    background: linear-gradient(135deg, #50C878 0%, #228B22 100%);
    color: var(--white);
}

.rank-badge.ruby {
    background: linear-gradient(135deg, #E0115F 0%, #9B111E 100%);
    color: var(--white);
}

/* TERMS SECTION MODERN */
.terms-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-main-card {
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    border: 2px solid rgba(4, 225, 249, 0.3);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(4, 225, 249, 0.2);
    position: relative;
}

.terms-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(4, 225, 249, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Terms Header */
.terms-header {
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.terms-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.terms-header-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.terms-header-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.terms-header-text h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.terms-header-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Terms Content */
.terms-content {
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(4, 225, 249, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(4, 225, 249, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.term-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.term-item:hover {
    background: rgba(4, 225, 249, 0.08);
    border-color: rgba(4, 225, 249, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(4, 225, 249, 0.2);
}

.term-item:hover::before {
    transform: scaleY(1);
}

.term-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(4, 225, 249, 0.4);
    transition: all 0.4s ease;
}

.term-item:hover .term-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(4, 225, 249, 0.6);
}

.term-details {
    flex: 1;
}

.term-details h5 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.term-details p {
    color: var(--textLight);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Terms Footer Note */
.terms-footer-note {
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.1) 0%, rgba(4, 225, 249, 0.1) 100%);
    border-top: 2px solid rgba(255, 222, 89, 0.3);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.terms-footer-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 222, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.note-badge {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondaryColor);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    box-shadow: 0 8px 25px rgba(255, 222, 89, 0.5);
    position: relative;
    z-index: 1;
}

.terms-footer-note p {
    color: var(--textLight);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* CTA SECTION */
.cta-section {
    padding: clamp(3.125rem, 2.4921rem + 3.1646vw, 6.25rem) 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-wrapper .btn-primary-custom {
    background: var(--white);
    color: var(--primaryColor);
    font-size: clamp(0.875rem, 0.7991rem + 0.3797vw, 1.25rem);
    padding: 1rem 3rem;
}

.cta-wrapper .btn-primary-custom:hover {
    background: var(--secondaryColor);
    color: var(--black);
}

/* FOOTER PREMIUM */
.footer-premium {
    background: linear-gradient(180deg, #0a0e27 0%, #000814 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Wave Animation */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-wave .shape-fill {
    fill: var(--themeColor);
    opacity: 0.1;
}

/* Footer Content */
.footer-content {
    padding: 100px 0 50px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(4, 225, 249, 0.5));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 25px rgba(4, 225, 249, 0.8));
    transform: scale(1.05);
}

.footer-description {
    color: var(--textLight);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Social Links Premium */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
    border: 2px solid rgba(4, 225, 249, 0.3);
    border-radius: 50%;
    color: var(--themeColor);
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--themeColor);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    border-color: var(--themeColor);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(4, 225, 249, 0.5);
}

.social-link i {
    position: relative;
    z-index: 1;
}
/* Twitter X Icon Styling */
.social-link.twitter-x {
    font-size: 1.3rem;
    font-weight: 900;
}

.social-link.twitter-x strong {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

/* Footer Widget */
.footer-widget {
    position: relative;
}

.footer-heading {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--themeColor), transparent);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--textLight);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--themeColor);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--themeColor);
    padding-left: 0;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--textLight);
    font-size: 1rem;
}

.footer-contact i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
    border: 2px solid rgba(4, 225, 249, 0.3);
    border-radius: 10px;
    color: var(--themeColor);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: var(--themeColor);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(4, 225, 249, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 2px solid rgba(4, 225, 249, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: var(--textLight);
    margin: 0;
    font-size: 1rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--textLight);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--themeColor);
}

.footer-bottom-links .separator {
    color: rgba(4, 225, 249, 0.3);
}

/* Floating Particles in Footer */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--themeColor);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 10px var(--themeColor);
}

.footer-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float-particle 15s infinite ease-in-out;
}

.footer-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: float-particle 18s infinite ease-in-out 2s;
}

.footer-particles .particle:nth-child(3) {
    top: 40%;
    left: 30%;
    animation: float-particle 20s infinite ease-in-out 4s;
}

.footer-particles .particle:nth-child(4) {
    top: 70%;
    left: 60%;
    animation: float-particle 16s infinite ease-in-out 6s;
}

.footer-particles .particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation: float-particle 22s infinite ease-in-out 8s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) translateX(30px);
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(60px);
        opacity: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
   
    .hero-stats {
        justify-content: center;
    }
    
    .footer-content {
        padding: 80px 0 40px;
    }
    
    /* Reduce robot icon size on tablets */
    .robot-icon-float {
        font-size: 1.5rem;
    }
   
    .navbar-nav li{
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile Styles */
    .navbar {
        padding: 0.5rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .navbar .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .navbar-brand {
        padding: 0.3rem 0.8rem;
    }
    
    .navbar-brand .logo {
        height: 32px;
    }
  
    .navbar-toggler {
        border: 2px solid var(--themeColor);
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
        background: rgba(4, 225, 249, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 15px rgba(4, 225, 249, 0.5);
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(4, 225, 249, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        background: rgba(13, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 0.8rem;
        padding: 0.8rem;
        border-radius: 12px;
        border: 1px solid rgba(4, 225, 249, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-width: 100%;
        overflow-x: hidden;
    }
    

    .nav-link {
        margin: 0.3rem 0;
        padding: 0.6rem 1rem !important;
        border-radius: 10px;
        font-size: 0.95rem;
        display: block;
    }
    
    .navbar-buttons {
        margin: 0.8rem auto 0.5rem;
        width: 100%;
        max-width: 100%;
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .navbar-buttons .btn-primary-custom,
    .navbar-buttons .btn-outline-custom {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        display: block;
        box-sizing: border-box;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 0 30px;
        min-height: auto;
    }
    

    
    .hero-badge {
        margin: 0 auto 1.2rem;
        padding: 0.5rem 1rem;
        gap: 0.6rem;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }
    
    .hero-badge span {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-stat {
        width: 100%;
        max-width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .hero-stat__icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .hero-stat__content h4 {
        font-size: 1.05rem;
    }
    
    .hero-stat__content p {
        font-size: 0.75rem;
    }
    
    .hero-visual {
        height: 380px;
        margin-top: 2rem;
    }
    
    /* Cards Mobile */
    .income-card,
    .bonus-card,
    .info-card {
        margin-bottom: 1.5rem;
        padding: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
    
    /* Rank Table Mobile */
    .rank-table {
        font-size: 0.85rem;
    }
    
    .rank-table th,
    .rank-table td {
        padding: 1rem 0.5rem;
    }
    
    .rank-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Anniversary Gift Mobile */
    .anniversary-gift {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
    }
    
    /* CTA Mobile */
    .cta-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-wave svg {
        height: 60px;
    }
    
    .footer-content {
        padding: 50px 0 30px;
    }
    
   
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

  
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
 
    
    .footer-contact i {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .copyright {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-bottom-links {
        margin-top: 0.5rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
    
    /* Terms Premium Mobile */
    .terms-premium-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .terms-feature-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .terms-feature-header h3 {
        font-size: 1.5rem;
    }

    .terms-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .terms-mini-card {
        padding: 1.5rem;
    }
    
    .terms-mini-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .terms-notice-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .notice-icon-wrapper {
        margin: 0 auto;
    }
    
    /* Reduce robot icons on mobile */
    .robot-icon-float {
        font-size: 1.2rem;
    }
    
    /* Hide some circuit lines on mobile */
    .circuit-line:nth-child(3),
    .circuit-line:nth-child(4) {
        display: none;
    }
    
    /* Hero Robot Mobile */
    .hero-robot__head {
        width: 100px;
        height: 75px;
    }
    
    .hero-robot__body {
        width: 115px;
        height: 95px;
    }
    
    .hero-robot__display {
        width: 80px;
        height: 58px;
        padding: 8px;
        gap: 6px;
    }
    
    .hero-robot__arm {
        width: 12px;
        height: 65px;
        top: 85px;
    }
    
    .hero-robot__arm--left {
        left: -16px;
    }
    
    .hero-robot__arm--right {
        right: -16px;
    }
    
    .hero-card {
        padding: 0.8rem 1.2rem;
    }
    
    .hero-card__emoji {
        font-size: 1.8rem;
    }
    
    .hero-card__content small {
        font-size: 0.75rem;
    }
    
    .hero-card__content strong {
        font-size: 1.1rem;
    }
    
    .hero-card--1 {
        top: 2%;
        left: 2%;
    }
    
    .hero-card--2 {
        top: 30%;
        right: 2%;
    }
    
    .hero-card--3 {
        bottom: 8%;
        left: 2%;
    }
    
    .hero-dollar {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    .navbar-toggler {
        padding: 0.35rem 0.5rem;
    }
    
    .navbar-collapse {
        margin-top: 0.6rem;
        padding: 0.6rem;
    }

    .navbar-buttons {
        margin: 0.6rem auto 0.4rem;
    }
    
    .navbar-buttons .btn-primary-custom,
    .navbar-buttons .btn-outline-custom {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .hero-robot__head {
        width: 85px;
        height: 65px;
    }
    
    .hero-robot__eyes {
        padding: 16px 18px 8px;
    }
    
    .hero-robot__eye {
        width: 22px;
        height: 22px;
    }
    
    .hero-robot__eye::after {
        width: 11px;
        height: 11px;
    }
    
    .hero-robot__mouth {
        width: 44px;
        height: 7px;
    }
    
    .hero-robot__body {
        width: 100px;
        height: 85px;
    }
    
    .hero-robot__display {
        width: 70px;
        height: 50px;
        padding: 7px;
        gap: 5px;
    }
    
    .hero-robot__display-line {
        height: 4px;
    }
    
    .hero-robot__arm {
        width: 10px;
        height: 55px;
        top: 72px;
    }
    
    .hero-robot__arm--left {
        left: -14px;
    }
    
    .hero-robot__arm--right {
        right: -14px;
    }
    
    .hero-card {
        padding: 0.7rem 1rem;
    }
    
    .hero-card__emoji {
        font-size: 1.5rem;
    }
    
    .hero-card__content small {
        font-size: 0.7rem;
    }
    
    .hero-card__content strong {
        font-size: 1rem;
    }
    
    .hero-card--3 {
        display: none;
    }
    
    .hero-dollar {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .hero-dollar--3 {
        display: none;
    }

    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .stat-info h4 {
        font-size: 1.2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 2rem 1.5rem;
    }
    
    .info-card,
    .bonus-card,
    .terms-main-card {
        padding: 1.5rem;
    }
    
    .income-card {
        padding: 2rem 1.5rem;
    }
    
    .income-icon {
        font-size: 3rem;
    }
    
    .income-card h3 {
        font-size: 1.5rem;
    }
    
    .income-rate {
        font-size: 1.2rem;
    }
    
    .terms-header {
        padding: 1.5rem;
    }
    
    .terms-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .terms-header-text h3 {
        font-size: 1.3rem;
    }
    
    .terms-header-text p {
        font-size: 1rem;
    }
    
    .terms-content {
        padding: 1.5rem;
    }
    
    .term-item {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
    }
    
    .term-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .term-details h5 {
        font-size: 1.1rem;
    }
    
    .term-details p {
        font-size: 0.95rem;
    }
    
    .terms-footer-note {
        padding: 1.5rem;
    }
    
    .note-badge {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .terms-footer-note p {
        font-size: 0.95rem;
    }
    
    /* Footer - Extra Compact */
    .footer-wave svg {
        height: 50px;
    }
    
    .footer-content {
        padding: 40px 0 20px;
    }
    
    .footer-brand {
        margin-bottom: 1.5rem;
    }
    
  
    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .footer-widget {
        margin-bottom: 1.2rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }
    
  
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-contact i {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1.2rem 0;
    }
    
    .copyright {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    

    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links .separator {
        display: none;
    }
    
    /* Minimal robot icons on small mobile */
    .robot-icon-float {
        font-size: 1rem;
        opacity: 0.03;
    }
    
    .robot-icon-float:nth-child(5),
    .robot-icon-float:nth-child(6) {
        display: none;
    }
    
    /* Simplify animations on mobile */
    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-scale {
        transition-duration: 0.5s;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
  
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

.hero-section {
    display: flex;
    align-items: center;
    padding: clamp(5.625rem, 4.8655rem + 3.7975vw, 9.375rem) 0 0px;
    position: relative;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.05) 0%, rgba(0, 74, 144, 0.05) 100%);
    border-radius: 50%;
    animation: hero-shape-float 20s infinite ease-in-out;
}

.hero-bg-shape--1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
}

.hero-bg-shape--2 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.hero-bg-shape--3 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes hero-shape-float {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(20px, -20px); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.12) 0%, rgba(0, 74, 144, 0.12) 100%);
    border: 2px solid rgba(4, 225, 249, 0.25);
    border-radius: 50px;
    padding: 0.5rem 1.3rem;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: #04E1F9;
    font-size: 1.1rem;
}

.hero-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #04E1F9;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.05rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    color: #fff;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 225, 249, 0.4);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid #04E1F9;
    color: #04E1F9;
}

.btn-hero-outline:hover {
    background: #04E1F9;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.06) 0%, rgba(0, 74, 144, 0.06) 100%);
    border: 1px solid rgba(4, 225, 249, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.hero-stat:hover {
    transform: translateY(-3px);
    border-color: #04E1F9;
    box-shadow: 0 6px 20px rgba(4, 225, 249, 0.25);
}

.hero-stat__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-stat__content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.hero-stat__content p {
    color: #E0E0E0;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.2;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: visible;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 225, 249, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: hero-glow-pulse 3s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.8; }
}

.hero-robot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hero-robot-float 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes hero-robot-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-18px); }
}

.hero-robot__head {
    width: 125px;
    height: 95px;
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    border-radius: 20px 20px 10px 10px;
    position: relative;
    margin: 0 auto 10px;
    box-shadow: 0 10px 35px rgba(4, 225, 249, 0.5);
}

.hero-robot__antenna {
    position: absolute;
    width: 4px;
    height: 30px;
    background: #04E1F9;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-robot__antenna-light {
    position: absolute;
    width: 13px;
    height: 13px;
    background: #FFDE59;
    border-radius: 50%;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 18px #FFDE59;
    animation: hero-antenna-pulse 1.5s infinite;
}

@keyframes hero-antenna-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-robot__eyes {
    display: flex;
    justify-content: space-around;
    padding: 20px 22px 10px;
}

.hero-robot__eye {
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    animation: hero-eye-blink 4s infinite;
}

.hero-robot__eye::after {
    content: '';
    width: 13px;
    height: 13px;
    background: #004A90;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hero-pupil-move 3s infinite;
}

@keyframes hero-eye-blink {
    0%, 96%, 100% { transform: scaleY(1); }
    98% { transform: scaleY(0.1); }
}

@keyframes hero-pupil-move {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-70%, -50%); }
    75% { transform: translate(-30%, -50%); }
}

.hero-robot__mouth {
    width: 52px;
    height: 8px;
    background: #fff;
    border-radius: 0 0 26px 26px;
    margin: 0 auto;
}

.hero-robot__body {
    width: 145px;
    height: 120px;
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    border: 3px solid #04E1F9;
    border-radius: 18px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 35px rgba(4, 225, 249, 0.4);
}

.hero-robot__display {
    width: 100px;
    height: 72px;
    background: rgba(4, 225, 249, 0.08);
    border: 2px solid #04E1F9;
    border-radius: 10px;
    margin: 20px auto;
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-robot__display-line {
    height: 5px;
    background: #04E1F9;
    border-radius: 3px;
    animation: hero-loading-bar 2s infinite;
}

.hero-robot__display-line:nth-child(1) { width: 80%; animation-delay: 0s; }
.hero-robot__display-line:nth-child(2) { width: 60%; animation-delay: 0.3s; }
.hero-robot__display-line:nth-child(3) { width: 90%; animation-delay: 0.6s; }

@keyframes hero-loading-bar {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 8px #04E1F9; }
}

.hero-robot__arm {
    width: 15px;
    height: 82px;
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    border-radius: 10px;
    position: absolute;
    top: 105px;
    box-shadow: 0 6px 20px rgba(4, 225, 249, 0.4);
}

.hero-robot__arm--left {
    left: -20px;
    transform-origin: top center;
    animation: hero-arm-wave-left 2.5s ease-in-out infinite;
}

.hero-robot__arm--right {
    right: -20px;
    transform-origin: top center;
    animation: hero-arm-wave-right 2.5s ease-in-out infinite;
}

@keyframes hero-arm-wave-left {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-40deg); }
}

@keyframes hero-arm-wave-right {
    0%, 100% { transform: rotate(20deg); }
    50% { transform: rotate(40deg); }
}

.hero-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
    border: 2px solid rgba(4, 225, 249, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(4, 225, 249, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.hero-card__emoji {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.hero-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-card__content small {
    color: #E0E0E0;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-card__content strong {
    color: #04E1F9;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-card--1 {
    top: 0%;
    left: 10%;
    animation: hero-card-float-1 4.5s ease-in-out infinite;
}

.hero-card--2 {
    top: 30%;
    right: 0%;
    animation: hero-card-float-2 5s ease-in-out infinite;
}

.hero-card--3 {
    bottom: 5%;
    left: 10%;
    animation: hero-card-float-3 4.8s ease-in-out infinite;
}

@keyframes hero-card-float-1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-18px) rotate(-8deg); }
}

@keyframes hero-card-float-2 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-22px) rotate(8deg); }
}

@keyframes hero-card-float-3 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-16px) rotate(-6deg); }
}

.hero-dollar {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFDE59 0%, #FFB700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.6);
    z-index: 1;
}

.hero-dollar--1 {
    top: 0%;
    right: 33%;
    animation: hero-dollar-float 3.2s ease-in-out infinite;
}

.hero-dollar--2 {
    top: 50%;
    left: 10%;
    animation: hero-dollar-float 3.8s ease-in-out infinite 0.6s;
}

.hero-dollar--3 {
    bottom: 30%;
    right: 15%;
    animation: hero-dollar-float 4.2s ease-in-out infinite 1.2s;
}

@keyframes hero-dollar-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* ========================================
   TERMS & CONDITIONS PREMIUM STYLES
   ======================================== */

.terms-ultra-premium {
    padding: clamp(3.125rem, 2.4921rem + 3.1646vw, 6.25rem) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(4, 225, 249, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.terms-ultra-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 225, 249, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: terms-bg-float 20s infinite ease-in-out;
}

@keyframes terms-bg-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.terms-premium-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.terms-feature-card {
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
    border: 2px solid rgba(4, 225, 249, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(4, 225, 249, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.terms-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(4, 225, 249, 0.1) 0%, transparent 70%);
    animation: terms-feature-rotate 15s linear infinite;
}

@keyframes terms-feature-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.terms-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(4, 225, 249, 0.6);
    box-shadow: 0 30px 80px rgba(4, 225, 249, 0.4);
}

.terms-feature-header {
    position: relative;
    z-index: 1;
}

.terms-feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 15px 40px rgba(4, 225, 249, 0.5);
    animation: terms-icon-pulse 3s ease-in-out infinite;
}

@keyframes terms-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.terms-feature-header h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.terms-feature-header p {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-feature-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(4, 225, 249, 0.2);
    position: relative;
    z-index: 1;
}

.feature-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    color: #04E1F9;
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    color: #E0E0E0;
    font-size: 0.9rem;
    font-weight: 500;
}

.terms-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.terms-mini-card {
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
    border: 2px solid rgba(4, 225, 249, 0.2);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.terms-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #04E1F9 0%, #004A90 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.terms-mini-card:hover {
    transform: translateY(-8px);
    border-color: rgba(4, 225, 249, 0.5);
    box-shadow: 0 15px 40px rgba(4, 225, 249, 0.3);
}

.terms-mini-card:hover::before {
    transform: scaleX(1);
}

.terms-mini-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
    border: 2px solid rgba(4, 225, 249, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04E1F9;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.terms-mini-card:hover .terms-mini-icon {
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(4, 225, 249, 0.5);
}

.terms-mini-card h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.terms-mini-card p {
    color: #E0E0E0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.terms-notice-card {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.08) 0%, rgba(4, 225, 249, 0.08) 100%);
    border: 2px solid rgba(255, 222, 89, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.notice-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFDE59 0%, #FFB700 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 222, 89, 0.5);
    animation: notice-pulse 2s ease-in-out infinite;
}

@keyframes notice-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.notice-content h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.notice-content p {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}
