@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #38bdf8;
    --accent: #22d3ee;
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --bg-card-hover: #151515;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #0ea5e9, #38bdf8, #22d3ee);
    --glow: 0 0 40px rgba(14, 165, 233, 0.3);
    color-scheme: dark;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #0ea5e9 #111;
}

html::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

html::-webkit-scrollbar-track {
    background: #111;
}

html::-webkit-scrollbar-thumb {
    background-color: #0ea5e9;
    border-radius: 999px;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(34, 211, 238, 0.06) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(5deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.bg-ocean-radial {
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.15), transparent 55%),
                radial-gradient(circle at bottom, rgba(6, 182, 212, 0.12), transparent 55%);
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(2, 2, 2, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 189, 248, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
    max-width: calc(100vw - 40px);
}

header:hover {
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(5, 5, 5, 0.95));
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(56, 189, 248, 0.2);
    transform: translateX(-50%) translateY(-2px) scale(1.02);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.15rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.05rem;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.8), rgba(129, 140, 248, 0.9));
    transition: width 0.16s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.15; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.25; }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    background: linear-gradient(120deg, #38bdf8, #22d3ee, #0ea5e9, #38bdf8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-text 4s ease infinite;
}

@keyframes gradient-text {
    0%, 100% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 500px;
}

.hero p:last-child {
    margin-bottom: 30px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-family: inherit;
}

.btn-about:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(56, 189, 248, 0.2));
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.about-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-modal.show {
    opacity: 1;
}

.about-modal-content {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.about-modal.show .about-modal-content {
    transform: translateY(0) scale(1);
}

.about-modal-header {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    position: relative;
    height: 50px;
}

.about-modal-header::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5f57, #ff9500);
    box-shadow: 
        22px 0 0 -2px rgba(255, 189, 46, 0.8),
        44px 0 0 -2px rgba(40, 200, 64, 0.8);
}

.about-window-title {
    position: absolute;
    top: 15px;
    left: 85px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.about-modal-body {
    padding: 30px;
    overflow-y: auto;
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    flex-shrink: 0;
    overflow: hidden;
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.about-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.about-skill {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-skill:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.about-skill i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.about-skill .skill-image {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 6px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(1945%) hue-rotate(181deg) brightness(99%) contrast(88%);
}

.about-skill h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.about-skill p {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.025em;
    color: var(--text);
}

.hero-stats {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.7), rgba(5, 5, 5, 0.8));
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(14, 165, 233, 0.1);
    width: 100%;
    max-width: 400px;
    transition: all 0.4s ease;
}

.stats-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6), 0 0 50px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.3);
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-container::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5f57, #ff9500);
    box-shadow: 
        18px 0 0 -2px rgba(255, 189, 46, 0.8),
        36px 0 0 -2px rgba(40, 200, 64, 0.8);
}

.stats-window-title {
    position: absolute;
    top: 12px;
    left: 70px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1;
}

.stats-content {
    padding: 50px 25px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.6), rgba(8, 8, 8, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #38bdf8, #22d3ee, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.2;
}

.stat-card.wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.05));
    border-color: rgba(14, 165, 233, 0.15);
}

.stat-card.wide .stat-number {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #ffffff, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card.wide::before {
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.3);
}

.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.skill-card {
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.06), transparent 55%),
                linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.36s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.15), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.12), transparent 58%);
    opacity: 0;
    transition: opacity 0.36s ease;
    pointer-events: none;
}

.skill-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.48),
                0 0 30px rgba(56, 189, 248, 0.08);
}

.skill-card:hover::before {
    opacity: 0.5;
}

.skill-card i {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.skill-card:hover i {
    background: rgba(14, 165, 233, 0.2);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.script-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.script-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.script-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.script-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3), 0 0 40px rgba(14, 165, 233, 0.1);
}

.script-card:hover::after {
    left: 100%;
}

.script-header {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(56, 189, 248, 0.1) 100%);
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
    min-height: 120px;
}

.script-header[style*="background-image"] {
    background-blend-mode: overlay;
    position: relative;
}

.script-header[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.7), rgba(56, 189, 248, 0.6));
    z-index: 1;
}

.script-header[style*="background-image"] .script-game-info,
.script-header[style*="background-image"] .script-stats {
    position: relative;
    z-index: 2;
}

.script-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.8), transparent);
    z-index: 3;
}
a
.script-body {
    padding: 0;
}

.script-tag {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    margin: 3px 3px 3px 0;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

footer {
    position: relative;
    z-index: 1;
    padding: 80px 20px 40px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.footer-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    background: linear-gradient(145deg, rgba(5, 5, 5, 0.95), rgba(2, 2, 2, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-container:hover {
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.1);
}

.footer-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateX(4px);
}

.footer-link i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 10px 0 0 0;
}

.discord-status {
    width: 100%;
    max-width: 350px;
}

.discord-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.9), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

.discord-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.discord-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.discord-status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(5, 5, 5, 0.95);
}

.discord-info {
    flex: 1;
    min-width: 0;
}

.discord-username {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.discord-status-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.discord-activity {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    padding: 6px 10px;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discord-loading,
.discord-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-muted);
}

.discord-loading i,
.discord-error i {
    font-size: 2rem;
    color: #5865f2;
}

.script-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 80vw;
    max-height: 80vh;
    width: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14, 165, 233, 0.05);
}

.modal-header h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.2rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.modal-body pre {
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
}

.modal-body code {
    color: #e2e8f0;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: rgba(14, 165, 233, 0.02);
}

.btn-close {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.script-category {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: capitalize;
}


@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}


.script-card.loading {
    pointer-events: none;
}

.loading-shimmer {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    height: 20px;
    margin-bottom: 10px;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.script-game-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.game-thumbnail {
    width: 50px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-thumbnail-placeholder {
    width: 50px;
    height: 28px;
    border-radius: 6px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.8rem;
}

.script-title-info h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text);
    line-height: 1.3;
}

.script-title-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.script-stats {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.script-description {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.script-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.script-tag.key-system {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.script-tag.no-key {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.script-tag.mobile {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.2);
}

.script-tag.premium {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.2);
}

.script-tag.free {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.script-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.btn-copy, .btn-view {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-copy {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border: 1px solid rgba(14, 165, 233, 0.2);
    flex: 1;
}

.btn-copy:hover {
    background: rgba(14, 165, 233, 0.2);
    transform: translateY(-1px);
}

.btn-view {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transform: translateY(-1px);
}

.script-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tested-executors {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.page-btn:hover:not(.disabled) {
    background: rgba(30, 41, 59, 0.8);
    color: var(--text);
    transform: translateY(-1px);
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.no-scripts, .error-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.no-scripts i, .error-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--primary);
    opacity: 0.5;
}

.no-scripts h3, .error-state h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.error-state ul {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: linear-gradient(135deg, #0284c7, #3730a3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.toast-error {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.toast.toast-success {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        width: auto;
        max-width: none;
        padding: 8px 15px;
        border-radius: 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .footer-left {
        order: 2;
    }

    .footer-right {
        order: 1;
    }

    .footer-right h3 {
        font-size: 1.3rem;
    }

    .discord-status {
        max-width: 100%;
    }

    .discord-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .discord-avatar-container {
        margin: 0 auto;
    }

    .discord-avatar {
        width: 60px;
        height: 60px;
    }

    .discord-status-indicator {
        width: 16px;
        height: 16px;
    }

    .discord-info {
        text-align: center;
    }

    .discord-username {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 15px 40px;
        min-height: 90vh;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        max-width: 100%;
        font-size: 1rem;
    }

    .stats-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .stats-content {
        padding: 45px 20px 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card.wide {
        grid-column: 1;
        order: 2;
    }

    .stat-card {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-card.wide .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.6px;
    }

    .stats-window-title {
        left: 60px;
        font-size: 0.7rem;
    }

    .btn-about {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .about-modal-content {
        width: 95vw;
        max-width: 95vw;
        margin: 10px;
        max-height: 85vh;
    }

    .about-modal-body {
        padding: 20px;
        max-height: calc(85vh - 100px);
        overflow-y: auto;
    }

    .about-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .about-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-info h3 {
        font-size: 1.2rem;
    }

    .about-info p {
        font-size: 0.85rem;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-skills {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-skill {
        padding: 10px 8px;
    }

    .about-skill i {
        font-size: 1.3rem;
    }

    .about-skill .skill-image {
        width: 1.3rem;
        height: 1.3rem;
    }

    .about-skill h4 {
        font-size: 0.75rem;
    }

    .about-skill p {
        font-size: 0.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 90vh;
        width: 95vw;
        margin: 10px;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-header h3 {
        font-size: 1rem;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-body code {
        font-size: 0.75rem;
    }

    .modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 8px;
    }

    .btn-copy, .btn-view, .btn-close {
        width: 100%;
        justify-content: center;
    }

    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    .script-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .script-card {
        padding: 16px;
    }

    .script-header {
        padding: 16px;
        min-height: 100px;
    }

    .script-game-info {
        gap: 10px;
    }

    .game-thumbnail,
    .game-thumbnail-placeholder {
        width: 40px;
        height: 22px;
        font-size: 0.7rem;
    }

    .script-title-info h3 {
        font-size: 1rem;
    }

    .script-title-info p {
        font-size: 0.75rem;
    }

    .script-stats {
        gap: 8px;
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

    .script-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .script-tags {
        gap: 4px;
    }

    .script-tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .script-actions {
        flex-direction: column;
        gap: 8px;
    }

    .btn-copy, .btn-view {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .script-footer {
        font-size: 0.7rem;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .filter-buttons {
        gap: 6px;
        padding: 0 10px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .pagination-controls {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .page-info {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 60px;
    }

    .stats-container {
        max-width: 360px;
    }

    .stats-content {
        gap: 20px;
        padding: 48px 22px 22px;
    }
}

::selection {
    background: rgba(56, 189, 248, 0.3);
    color: #fff;
}

.aot-header {
    background-image: url("https://tr.rbxcdn.com/180DAY-5340a12b15ac2b53dbd7a1518c6aa2e9/768/432/Image/Webp/noFilter");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.aot-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.7), rgba(56, 189, 248, 0.6));
    z-index: 1;
}

.aot-header .script-game-info,
.aot-header .script-stats {
    position: relative;
    z-index: 2;
}

.aot-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.8), transparent);
    z-index: 3;
}

.loadstring-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.loadstring-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent 70%);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

.loadstring-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.7), rgba(5, 5, 5, 0.8));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 24px;
    padding: 0;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(14, 165, 233, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.loadstring-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.loadstring-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 40px rgba(14, 165, 233, 0.2);
    transform: translateY(-4px);
}

.loadstring-header {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(56, 189, 248, 0.15));
    border-bottom: 1px solid rgba(14, 165, 233, 0.3);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.loadstring-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.8), transparent);
    animation: slideGlow 2s ease-in-out infinite;
}

@keyframes slideGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.loadstring-header i {
    font-size: 2rem;
    color: var(--primary);
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.6));
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.loadstring-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #22d3ee, #0ea5e9);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-text 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3));
}

.loadstring-body {
    padding: 40px;
    position: relative;
}

.loadstring-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.loadstring-code {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(5, 5, 5, 0.5));
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow-x: auto;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(14, 165, 233, 0.1);
}

.loadstring-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
}

.loadstring-code pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.loadstring-code code {
    color: #22d3ee;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
    font-weight: 500;
}

.btn-copy-loadstring {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #0ea5e9);
    background-size: 200% 200%;
    border: 2px solid rgba(14, 165, 233, 0.5);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-copy-loadstring:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(14, 165, 233, 0.8);
}

.btn-copy-loadstring:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-copy-loadstring i {
    font-size: 1rem;
}

.loadstring-footer {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(56, 189, 248, 0.05));
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    padding: 24px 40px;
    position: relative;
}

.loadstring-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
}

.loadstring-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.loadstring-info i {
    color: var(--primary);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(14, 165, 233, 0.5));
}

@media (max-width: 768px) {
    .loadstring-card {
        margin: 0 10px;
    }

    .loadstring-header {
        padding: 20px;
    }

    .loadstring-header h3 {
        font-size: 1.1rem;
    }

    .loadstring-body {
        padding: 20px;
    }

    .loadstring-code {
        padding: 15px;
    }

    .loadstring-code code {
        font-size: 0.8rem;
    }

    .btn-copy-loadstring {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .loadstring-footer {
        padding: 15px 20px;
    }

    .loadstring-info {
        font-size: 0.8rem;
    }
}

.game-supports-container {
    margin-top: 60px;
    padding: 0 20px;
}

.game-supports-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text);
    justify-content: center;
}

.game-supports-title i {
    color: var(--primary);
    font-size: 1.6rem;
}

.game-supports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-support-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.9), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-support-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.game-support-card:hover::before {
    opacity: 1;
}

.game-support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.game-support-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.game-support-card:hover .game-support-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(56, 189, 248, 0.2));
    transform: scale(1.05);
}

.game-support-info {
    flex: 1;
    min-width: 0;
}

.game-support-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.game-support-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.game-support-badge {
    flex-shrink: 0;
}

.game-support-badge i {
    font-size: 1.5rem;
    color: #22c55e;
}

@media (max-width: 768px) {
    .game-supports-container {
        margin-top: 40px;
        padding: 0 10px;
    }

    .game-supports-title {
        font-size: 1.5rem;
    }

    .game-supports-title i {
        font-size: 1.3rem;
    }

    .game-supports-grid {
        grid-template-columns: 1fr;
    }

    .game-support-card {
        padding: 20px;
    }

    .game-support-icon {
        width: 50px;
        height: 50px;
    }

    .game-support-icon i {
        font-size: 1.5rem;
    }

    .game-support-info h4 {
        font-size: 1rem;
    }

    .game-support-info p {
        font-size: 0.8rem;
    }

    .game-support-badge i {
        font-size: 1.3rem;
    }
}

/* Floating particles animation */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* Custom cursor trail */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(14, 165, 233, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.8);
}

/* Parallax sections */
.parallax-section {
    position: relative;
    transform-style: preserve-3d;
}

/* Enhanced button animations */
.btn-about,
.btn-copy-loadstring,
.btn-copy,
.btn-view {
    position: relative;
    overflow: hidden;
}

.btn-about::before,
.btn-copy-loadstring::before,
.btn-copy::before,
.btn-view::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-about:hover::before,
.btn-copy-loadstring:hover::before,
.btn-copy:hover::before,
.btn-view:hover::before {
    width: 300px;
    height: 300px;
}

/* Glowing text effect */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    background: linear-gradient(120deg, #38bdf8, #22d3ee, #0ea5e9, #38bdf8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-text 4s ease infinite;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3));
}

/* Animated underline for nav links */
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.15rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.05rem;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.8), rgba(129, 140, 248, 0.9));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Scroll reveal animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: slideInUp 0.8s ease forwards;
}

/* Enhanced footer with glow */
.footer-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    background: linear-gradient(145deg, rgba(5, 5, 5, 0.8), rgba(2, 2, 2, 0.7));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Ripple effect on cards */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.stat-card,
.game-support-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after,
.game-support-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.stat-card:active::after,
.game-support-card:active::after {
    animation: ripple 0.6s ease-out;
}
/* Features Section */
#features {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.02), rgba(56, 189, 248, 0.01));
    position: relative;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(56, 189, 248, 0.05), transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.8), rgba(2, 2, 2, 0.9));
    position: relative;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(56, 189, 248, 0.08), transparent 60%),
                radial-gradient(circle at 20% 70%, rgba(14, 165, 233, 0.06), transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    top: -10px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: right;
}

.testimonial-author strong {
    color: var(--primary);
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-card i {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .testimonial-content p::before {
        font-size: 2.5rem;
        top: -8px;
        left: -15px;
    }
}
/* Split Layout Sections */
.split-layout {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.split-layout.reverse .split-content {
    grid-template-columns: 1fr 1fr;
}

.split-text {
    padding: 40px 0;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
    text-align: left;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(8px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-item {
    padding: 24px;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateX(8px);
    border-left-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
}

.testimonial-item p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Visual Elements */
.code-preview {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.9), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.code-header {
    background: rgba(14, 165, 233, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #28ca42;
}

.code-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.code-content {
    padding: 24px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 8px;
}

.code-comment { color: #6b7280; }
.code-keyword { color: #8b5cf6; }
.code-variable { color: #22d3ee; }
.code-function { color: #f59e0b; }
.code-string { color: #10b981; }

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.showcase-card {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
}

.showcase-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.showcase-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.executor-list {
    margin-top: 32px;
}

.executor-list h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 12px;
}

.executor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.executor-tag {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }
    
    .split-layout.reverse .split-visual {
        order: -1;
    }
    
    .split-text h2 {
        text-align: center;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .split-layout {
        padding: 60px 0;
    }
    
    .split-content {
        gap: 40px;
        padding: 0 15px;
    }
    
    .split-text {
        padding: 20px 0;
    }
    
    .feature-item,
    .testimonial-item {
        padding: 16px;
    }
    
    .feature-item:hover,
    .testimonial-item:hover {
        transform: translateX(4px);
    }
    
    .code-content {
        padding: 16px;
        font-size: 0.8rem;
    }
    
    .showcase-number {
        font-size: 2rem;
    }
    
    .executor-tags {
        justify-content: center;
    }
}
.code-title {
    margin-left: 40px;
}
/* Usage Section */
.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.usage-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.usage-step:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(8px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Security Tips */
.security-tips {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.security-header {
    background: rgba(255, 165, 0, 0.1);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.security-header i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.security-header h3 {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.security-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-tip {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.security-tip:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.2);
}

.security-tip i {
    font-size: 1.2rem;
    color: #f59e0b;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-tip h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.security-tip p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .usage-step {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .security-content {
        padding: 20px;
    }
    
    .security-tip {
        padding: 12px;
    }
}
/* Remove section backgrounds */
#features {
    background: none !important;
}

#features::before {
    display: none !important;
}

#testimonials {
    background: none !important;
}

#testimonials::before {
    display: none !important;
}
/* Page Styles */
.page-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Changelog Styles */
.changelog-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.changelog-entry {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.changelog-entry:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.changelog-header h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.changelog-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.changelog-content h3 {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 12px 0;
}

.changelog-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.changelog-content li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 4px 0 4px 20px;
    position: relative;
}

.changelog-content li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Todo Styles */
.todo-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.todo-category {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.todo-category:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
}

.todo-category h2 {
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.todo-category h2 i {
    color: var(--primary);
}

.todo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.todo-item:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(8px);
}

.todo-item i {
    font-size: 0.6rem;
    flex-shrink: 0;
}

.todo-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.priority-high i {
    color: #ef4444;
}

.priority-medium i {
    color: #f59e0b;
}

.priority-low i {
    color: #22c55e;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .changelog-entry,
    .todo-category {
        padding: 24px 20px;
    }
    
    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .todo-item:hover {
        transform: translateX(4px);
    }
}
/* Status Label Styles for Todo */
.status-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    border: 1px solid;
}

.status-label.development {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.status-label.testing {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

.status-label.planned {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    border-color: rgba(14, 165, 233, 0.3);
}

.status-label.thinking {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
}

.status-label.hold {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.todo-item span:not(.status-label) {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
}
/* Todo Table Styles */
.todo-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.8), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.todo-table th {
    background: rgba(14, 165, 233, 0.1);
    color: var(--text);
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.todo-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.todo-table tr:hover {
    background: rgba(14, 165, 233, 0.05);
}

.todo-table tr:last-child td {
    border-bottom: none;
}
/* Beta Label Styles */
.beta-label {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}
/* Simple Stats Styles */
.simple-stat {
    text-align: center;
    padding: 16px;
    margin-bottom: 20px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}