@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Rajdhani:wght@600;700;800&display=swap');

/* Base Font Utility */
.font-rajdhani {
    font-family: 'Rajdhani', sans-serif !important;
}

/* --- Minimalist Cyber Gradient Background --- */
body {
    background-color: #05070B !important;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 153, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(0, 229, 255, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(0, 119, 204, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #05070B 0%, #080C14 50%, #030508 100%) !important;
    background-attachment: fixed !important;
}

/* Ambient Floating Shapes */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 9999px;
    filter: blur(160px);
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(35px, 25px) scale(1.08); }
}

/* --- Glass Panels --- */
.glass-box {
    background: rgba(10, 14, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* --- Cards Hover and Neon Glows --- */
.script-card {
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(12, 17, 26, 0.85) 0%, rgba(7, 10, 16, 0.95) 100%);
}

.script-card:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(0, 229, 255, 0.55);
    box-shadow: 
        0 20px 40px -15px rgba(0, 153, 255, 0.35),
        0 0 25px rgba(0, 229, 255, 0.12) inset;
}

/* Smooth Image Scale on Hover */
.script-card .img-box img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: brightness(0.85);
}

.script-card:hover .img-box img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* Subtle Card Light Reflection */
.script-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: 0.75s;
}

.script-card:hover::after {
    left: 160%;
}

/* --- Gradient Texts & Buttons --- */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #CFE6FF 30%, #0099FF 70%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(0, 153, 255, 0.4));
}

.action-btn {
    background: linear-gradient(135deg, #0077CC 0%, #0099FF 50%, #00B4D8 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.35);
    transition: all 0.25s ease;
}

.action-btn:hover {
    box-shadow: 0 6px 24px rgba(0, 229, 255, 0.65);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.discord-btn {
    background: #5865F2;
    color: #ffffff;
    transition: all 0.25s ease;
}

.discord-btn:hover {
    background: #4752c4;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.45);
    transform: translateY(-1px);
}

/* --- Top Marquee Continuous Animation --- */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    background: rgba(7, 10, 16, 0.95);
    border-bottom: 1px solid rgba(0, 153, 255, 0.2);
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 22s linear infinite;
    padding: 7px 0;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* --- Social Icon Buttons --- */
.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: rgba(0, 153, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.5);
    color: #00E5FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
}

/* Subtle Link Hovers */
.footer-link {
    color: #94a3b8;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}