* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff88;
    --secondary: #00d4ff;
    --accent: #ff00ff;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #151b2e;
    --text: #ffffff;
    --text-dim: #a0aec0;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Floating Animation */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    }
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(21, 27, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 12px;
}

.lang-btn {
    background: transparent;
    border: 2px solid transparent;
    color: var(--text-dim);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-text {
    color: var(--text);
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    /* Background removed for consistency */
    display: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 900;
    margin-bottom: 20px;
    animation: scaleIn 1s ease-out;
}

.glitch {
    position: relative;
    color: var(--text);
    text-shadow:
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid;
    animation: fadeInUp 0.6s ease-out;
}

.social-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.social-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.social-btn:nth-child(3) {
    animation-delay: 0.3s;
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.social-btn.discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
    border-color: #5865f2;
}

.social-btn.discord:hover {
    background: #5865f2;
    color: white;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
    transform: translateY(-3px);
}

.social-btn.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-color: #ff0000;
}

.social-btn.youtube:hover {
    background: #ff0000;
    color: white;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px);
}

.social-btn.tiktok {
    background: rgba(0, 242, 234, 0.1);
    color: #00f2ea;
    border-color: #00f2ea;
}

.social-btn.tiktok:hover {
    background: #00f2ea;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.5);
    transform: translateY(-3px);
}

/* Section */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

/* About Section */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.profile-card {
    background: var(--bg-card);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.avatar-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
}

.profile-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.owner-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
}

.owner-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.info-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.discord-icon {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
}

.info-icon svg {
    width: 32px;
    height: 32px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-dim);
    margin-bottom: 15px;
}

.info-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.info-link:hover {
    color: var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

/* Portfolio */
.portfolio-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
}

.role {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    color: var(--bg-dark);
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-weight: 700;
    text-transform: uppercase;
}

.skill-percent {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: var(--primary);
}

.skill-bar {
    height: 12px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

/* Script Section */

.script-layout {
    max-width: 900px;
    margin: 0 auto;
}

.script-card-modern {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    animation: scaleIn 0.8s ease-out;
}

.card-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.card-corners span {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
}

.card-corners span:nth-child(1) {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.card-corners span:nth-child(2) {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.card-corners span:nth-child(3) {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.card-corners span:nth-child(4) {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.script-header-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.script-icon {
    font-size: 48px;
    color: var(--primary);
}

.script-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.script-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.script-info p {
    color: var(--text-dim);
    font-size: 14px;
}

.badge-modern {
    margin-left: auto;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.badge-modern.free {
    background: var(--primary);
    color: var(--bg-dark);
}

.script-desc {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.feature-tags span {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-tags span svg {
    flex-shrink: 0;
}

.code-box {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.code-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.code-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.code-content code {
    flex: 1;
    color: var(--text-dim);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    word-break: break-all;
}

.copy-btn-icon {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.copy-btn-icon svg {
    width: 20px;
    height: 20px;
}

.copy-btn-icon:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-premium {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border: none;
    border-radius: 12px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    animation: pulseGlow 3s ease-in-out infinite;
}

.btn-premium svg {
    width: 24px;
    height: 24px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.5);
}

/* Version Info Boxes */
.version-info {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s;
}

.version-info:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.version-info.premium-info {
    background: rgba(255, 0, 255, 0.05);
    border-color: rgba(255, 0, 255, 0.3);
    animation-delay: 0.2s;
}

.version-info.premium-info:hover {
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.version-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.version-icon {
    font-size: 32px;
}

.version-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
}

.premium-info .version-header h4 {
    color: var(--accent);
}

.version-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.version-features li {
    color: var(--text-dim);
    font-size: 15px;
    padding-left: 5px;
}

.widget {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.widget-icon {
    font-size: 24px;
}

.widget-header h4 {
    font-size: 18px;
    font-weight: 700;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-row:last-child {
    border-bottom: none;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.online {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.status-row span:nth-child(2) {
    flex: 1;
    color: var(--text-dim);
}

.status-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.quick-link:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.quick-link svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Executor */
.executor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.executor-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out;
}

.executor-card:nth-child(1) {
    animation-delay: 0.1s;
}

.executor-card:nth-child(2) {
    animation-delay: 0.2s;
}

.executor-card:nth-child(3) {
    animation-delay: 0.3s;
}

.executor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.executor-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.executor-icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.executor-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 20px;
}

.executor-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.executor-card p {
    color: var(--text-dim);
    margin-bottom: 15px;
}

.executor-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--secondary);
    border-radius: 10px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.executor-link svg {
    width: 18px;
    height: 18px;
}

.executor-link:hover {
    background: var(--secondary);
    color: var(--bg-dark);
}

.executor-pc-info {
    color: var(--text-dim);
    line-height: 1.8;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
}

/* Shop */

.shop-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
}

.shop-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.shop-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.shop-features {
    list-style: none;
    margin: 30px 0;
}

.shop-features li {
    padding: 12px 0;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.shop-features li:hover {
    color: var(--primary);
    padding-left: 10px;
}

.btn-order {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: var(--bg-dark);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-order svg {
    width: 24px;
    height: 24px;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.5);
}

/* Popup Modern */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-modern {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 36px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.popup-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
}

.popup-modern h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

.order-option {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.order-option:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon.discord {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
}

.option-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.option-icon svg {
    width: 32px;
    height: 32px;
}

.option-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.option-text p {
    color: var(--text-dim);
    line-height: 1.6;
}

.option-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: var(--bg-card);
    padding: 0 15px;
    color: var(--text-dim);
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-text {
    color: var(--text-dim);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.footer-copyright {
    color: var(--text-dim);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .executor-grid {
        grid-template-columns: 1fr;
    }

    .popup-modern {
        padding: 30px 20px;
    }

    .order-option {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ============================================ */

/* Tablet and below (768px) */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    .container-wide {
        padding: 0 20px;
    }

    /* Language Switcher - Better positioning */
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 6px;
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    /* Navbar */
    .nav-container {
        padding: 15px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 60px) !important;
    }

    .hero-subtitle {
        font-size: clamp(18px, 4vw, 24px) !important;
    }

    .hero-description {
        font-size: 16px !important;
        padding: 0 10px;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px) !important;
        margin-bottom: 40px;
    }

    /* Script Cards */
    .script-card-modern {
        padding: 25px;
        margin-bottom: 30px;
    }

    .script-header-modern {
        flex-wrap: wrap;
    }

    .script-icon svg {
        width: 36px;
        height: 36px;
    }

    .script-info h3 {
        font-size: 20px;
    }

    .badge-modern {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .feature-tags {
        gap: 8px;
    }

    .feature-tags span {
        font-size: 12px;
        padding: 5px 10px;
    }

    .code-content {
        flex-direction: column;
        align-items: stretch;
    }

    .code-content code {
        font-size: 12px;
        word-break: break-all;
    }

    /* Version Info Cards */
    .version-info {
        padding: 20px;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-card {
        padding: 30px 20px;
    }

    .owner-name {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-card {
        padding: 25px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-header h3 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Executor Cards */
    .executor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Popup */
    .popup-modern {
        width: 90%;
        max-width: 400px;
        padding: 30px 20px;
        margin: 20px;
    }

    .popup-icon svg {
        width: 36px;
        height: 36px;
    }

    /* Footer */
    .footer-content {
        padding: 30px 0;
    }

    .footer-social {
        gap: 15px;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 24px !important;
    }

    .script-card-modern {
        padding: 20px;
    }

    .script-info h3 {
        font-size: 18px;
    }

    .feature-tags span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .code-content code {
        font-size: 11px;
    }

    .btn-premium {
        padding: 12px 20px;
        font-size: 14px;
    }

    .owner-name {
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .popup-modern {
        padding: 25px 15px;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .nav-menu {
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 40px 0;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .logo {
        font-size: 18px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .script-card-modern {
        padding: 15px;
    }

    .feature-tags {
        gap: 6px;
    }
}
