:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent-color: #64ceff;
    --accent-glow: rgba(100, 206, 255, 0.4);

    --card-bg: rgba(26, 26, 26, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-bg: rgba(255, 255, 255, 0.12);

    --border-radius: 12px;
    --section-spacing: 5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-blur: blur(12px);
}

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

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #64ceff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #222630;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 60px);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, transparent 0%, rgba(15, 15, 20, 0.95) 100%);
    pointer-events: none;
    z-index: -1;
}

html.no-scroll, 
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
    z-index: 2;
}

.mobile-logo {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 0 auto 3.5rem auto;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 30%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: fit-content;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* ================= PRELOADER ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 40%, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulseText 2s infinite alternate;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 15px auto;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    border-radius: 4px;
    animation: loadBar 2s ease-in-out infinite;
}

.loader-status {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: blink 1.5s infinite;
}

/* ================= HEADER & NAV ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2000;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--accent-color);
}

.nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    margin-right: 8px;
    color: var(--accent-color);
    opacity: 0.8;
    transition: var(--transition);
}

.nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* ================= HERO ================= */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    margin-top: -5vh;
}

#hero h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 30%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 0 20px rgba(100, 206, 255, 0.3));
}

.hero-content .subtitle {
    font-size: 1.6rem;
    margin-bottom: 3.5rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

/* ================= SHARED CARD COMPONENTS ================= */
.service-card,
.feature-item,
.skill-card,
.portfolio-item,
.project-card,
.price-card,
.server-card,
.feedback,
.achievement,
.faq-item,
.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.service-card:hover,
.feature-item:hover,
.skill-card:hover,
.portfolio-item:hover,
.project-card:hover,
.price-card:hover,
.server-card:hover,
.feedback:hover,
.achievement:hover,
.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    background: var(--card-hover-bg);
}

.features-grid, .services-grid, .achievement-list, .feedback-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item, .service-card, .achievement, .feedback {
    padding: 2rem;
    text-align: center;
}

.feature-icon, .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.feature-item h3, .service-card h3, .achievement h3, .feedback h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.achievement h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 800;
}

.feature-item p, .service-card p, .achievement p, .feedback p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= BUTTONS ================= */
.submit-btn, .order-btn, .price-btn, .copy-ip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
    gap: 0.5rem;
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(100, 206, 255, 0.2);
}

.submit-btn:hover, .order-btn:hover, .price-btn:hover, .copy-ip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--accent-glow);
    background: #fff;
    color: var(--accent-color);
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

/* ================= ABOUT SECTIONS ================= */
.about-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 1.5rem 2.5rem;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.about-content .motto {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--accent-glow);
}

.about-content .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto;
}

.hardware {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    text-align: left;
}

.hardware .section-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.hardware ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.hardware li {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border: 1px solid transparent;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.hardware li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.hardware strong {
    color: var(--accent-color);
    margin-right: 8px;
    font-weight: 600;
    min-width: 100px;
}

/* ================= PORTFOLIO & PROJECTS ================= */
.portfolio-header { text-align: center; margin-bottom: 3rem; }
.portfolio-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.5rem; }

.portfolio-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    padding: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    cursor: zoom-in;
}

.portfolio-item::after {
    content: '\f00e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: blur(2px);
}

.portfolio-item:hover::before { opacity: 1; }
.portfolio-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.portfolio-info {
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 20, 0.95);
    padding: 1.25rem;
    border-top: 1px solid var(--card-border);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.portfolio-info h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: #fff; }
.portfolio-info p { font-size: 0.9rem; color: var(--text-muted); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    height: 300px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-image { transform: scale(1.1); }

.project-overlay h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.project-card .project-overlay .project-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 22px;
    background: #3498db;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 5;
}

.project-card .project-overlay .project-link-btn:hover {
    background: #2980b9;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.project-card .project-overlay .project-link-btn i { font-size: 12px; }

/* ================= SKILLS ================= */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.skill-card { padding: 20px; }
.skill-header { display: flex; justify-content: space-between; margin-bottom: 12px; font-weight: 600; }
.skill-bar { width: 100%; height: 8px; background: rgba(0,0,0,0.3); border-radius: 4px; overflow: hidden; }
.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #2962ff, var(--accent-color));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: loadSkill 1.5s ease-out forwards;
    width: 0;
}
@keyframes loadSkill { from { width: 0; } }

.skill-name { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.skill-icon { font-size: 1.2em; color: #64ceff; }
.skill-tags { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
    font-size: 0.75rem;
    padding: 3px 8px;
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.skill-card:hover .tag {
    border-color: #64ceff;
    color: #fff;
}

/* ================= LOGO ================= */
.logos-slider {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.logos-track {
    display: flex;
    align-items: center;
    width: calc(250px * 8);
    animation: scroll 20s linear infinite;
}

.logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.logo-item img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.logo-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 4)); } 
}

.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

/* ================= PRICING ================= */
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; }
.price-card { padding: 2.5rem; text-align: center; flex: 1; min-width: 280px; max-width: 350px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent-color); background: rgba(100, 206, 255, 0.05); transform: scale(1.02); }
.price-card h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.3rem; }
.price { font-size: 2.2rem; color: var(--accent-color); font-weight: 800; margin-bottom: 1.5rem; }
.price-card ul { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; flex-grow: 1; }
.price-card ul li { padding: 0.8rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: var(--text-muted); font-size: 0.95rem; }
.price-card ul li:last-child { border-bottom: none; }
.price-card .price-btn { width: 100%; margin-top: auto; }

/* ================= SERVER CARD ================= */
.server-card {
    background: linear-gradient(90deg, rgba(26,26,26,0.9), rgba(34,34,34,0.9));
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.server-info h3 { margin: 0 0 0.5rem 0; color: #fff; }
.server-info p { margin: 0; color: var(--text-muted); }
.server-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.stat-box {
    background: rgba(0,0,0,0.3); padding: 0.6rem 1.2rem; border-radius: 6px;
    color: #fff; border: 1px solid var(--card-border); display: flex; align-items: center; gap: 0.8rem;
}
.status-indicator { width: 8px; height: 8px; border-radius: 50%; background: #444; display: inline-block; }
.status-indicator.online { background: #00ff88; box-shadow: 0 0 8px #00ff88; }

/* ================= FAQ ================= */
#faq { max-width: 800px; margin: 0 auto; }
#faq .subtitle {
    text-align: center; font-size: 1.1rem; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto;
}
.faq-item {
    margin-bottom: 1rem; padding: 0; background: var(--card-bg);
    border: 1px solid var(--card-border); border-radius: var(--border-radius);
    overflow: hidden; transition: all 0.3s ease;
}
.faq-question {
    display: flex; align-items: center; justify-content: flex-start; gap: 20px;
    width: 100%; background: none; border: none; color: #fff; font-size: 1.1rem;
    text-align: left; padding: 1.5rem; cursor: pointer; font-weight: 600; transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-color); }
.faq-toggle { font-size: 1.5rem; color: var(--accent-color); transition: transform 0.3s ease; flex-shrink: 0; margin-right: 15px; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; opacity: 0; background: rgba(0, 0, 0, 0.2);
    transition: max-height 0.3s ease, opacity 0.3s ease;
}
.faq-answer p { padding: 1.5rem; padding-top: 0; color: var(--text-muted); line-height: 1.7; margin: 0; }
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; }

/* ================= CONTACT ================= */
.contact-form { max-width: 600px; margin: 0 auto; padding: 2.5rem; }
.form-group { width: 100%; margin-bottom: 1.2rem; }
.form-input {
    width: 100%; padding: 1rem 1.2rem; background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border); border-radius: 8px; color: #fff;
    font-size: 1rem; font-family: inherit; transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--accent-color); background: rgba(0, 0, 0, 0.5); }

/* ================= FEEDBACK & SLIDER ================= */
.feedback-summary {
    display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--card-border); border-radius: 50px;
    padding: 12px 30px; margin: 0 auto 3rem auto; width: fit-content;
    backdrop-filter: blur(5px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-muted); font-size: 0.95rem; font-weight: 400;
}
.feedback-summary span:last-child { color: var(--text-muted); font-size: 0.95rem; font-weight: 400; }
#miniStars { color: #ffc107; text-shadow: 0 0 15px rgba(255, 193, 7, 0.4); font-size: 1.2rem; letter-spacing: 3px; }
#miniAvg { color: #fff; font-weight: 800; font-size: 1.3rem; }

.slider-container { position: relative; max-width: 800px; margin: 40px auto 0; display: flex; align-items: center; gap: 20px; }
.slider-window { overflow: hidden; width: 100%; border-radius: 15px; background: rgba(255, 255, 255, 0.02); }
.slider-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.feedback-slide { min-width: 100%; padding: 20px; box-sizing: border-box; }
.feedback-card {
    background: rgba(30, 30, 30, 0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
    padding: 40px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex; flex-direction: column; align-items: center;
}
.feedback-avatar { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--accent-color, #3498db); margin-bottom: 20px; object-fit: cover; }
.feedback-card h3 { margin: 0 0 5px 0; font-size: 1.4rem; color: #fff; }
.stars-row { color: #ffc107; margin-bottom: 20px; font-size: 1rem; letter-spacing: 2px; }
.feedback-card p { font-style: italic; color: #ccc; line-height: 1.6; font-size: 1.1rem; margin: 0; }
.slider-btn {
    background: rgba(255, 255, 255, 0.1); border: none; color: white; width: 50px; height: 50px;
    border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: 0.3s; flex-shrink: 0;
}
.slider-btn:hover { background: var(--accent-color, #3498db); transform: scale(1.1); }

/* ================= FOOTER ================= */
.site-footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    border-color: transparent;
}

.social-icons a.yt:hover { background: #FF0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); }
.social-icons a.tt:hover { background: #000; border: 1px solid #00f2ea; box-shadow: 0 0 20px rgba(0, 242, 234, 0.4); }
.social-icons a.gh:hover { background: #6e5494; box-shadow: 0 0 20px rgba(110, 84, 148, 0.6); }
.social-icons a.fb:hover { background: #1877f2; box-shadow: 0 0 20px rgba(24, 119, 242, 0.6); }
.social-icons a.dc:hover { background: #5865F2; box-shadow: 0 0 20px rgba(88, 101, 242, 0.6); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-bottom strong {
    color: var(--accent-color);
}

.floating-discord {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #5865F2; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 900;
    transition: transform 0.3s; animation: floatBtn 3s ease-in-out infinite;
}
.floating-discord img { width: 35px; height: 35px; }
.floating-discord:hover { transform: scale(1.1) rotate(10deg); }
@keyframes floatBtn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ================= LIGHTBOX ================= */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.92); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); display: none; z-index: 2000; opacity: 0;
    transition: opacity 0.3s ease; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: block; opacity: 1; }

.lightbox__loader {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 50px; height: 50px; border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid var(--accent-color); border-radius: 50%;
    animation: spin 1s linear infinite; z-index: 1500; display: none;
}
.lightbox.loading .lightbox__loader { display: block; }
@keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }

.lightbox__stage {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90vw; height: 90vh; max-width: 95vw; max-height: 90vh;
    background: #0f0f0f; border: 1px solid #333; border-radius: 12px;
    overflow: hidden; box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: block;
}

.lightbox__img {
    display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    max-width: none; max-height: none; object-fit: contain; transform-origin: 0 0;
    user-select: none; -webkit-user-drag: none; cursor: grab;
    transition: transform .1s cubic-bezier(0.1, 0.7, 1.0, 0.1); will-change: transform;
}
.lightbox__img:active { cursor: grabbing; }

.lightbox__close {
    position: absolute; top: 15px; right: 15px; z-index: 10; background: #ff4d4d;
    border: none; width: 36px; height: 36px; border-radius: 50%; color: #fff;
    font-size: 20px; line-height: 1; display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: 0.3s; backdrop-filter: blur(5px);
}
.lightbox__close:hover { transform: rotate(90deg); }

.lightbox__controls {
    position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 8px; padding: 6px 12px; background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(8px); border-radius: 30px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lb-btn {
    background: transparent; border: none; color: #eee; padding: 6px 10px; width: 45px; height: 45px;
    border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.lb-btn:hover { background: rgba(255,255,255,0.1); color: #000; transform: translateY(-3px); box-shadow: 0 0 15px var(--accent-glow); }
#lbReset { width: auto; padding: 0 20px; font-size: 14px; font-weight: 600; border-radius: 25px; text-transform: uppercase; }

/* ================= BACKGROUND ANIMATION ================= */
.background-cubes-advanced { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; pointer-events: none; perspective: 1000px; }
.background-cubes-advanced span { position: absolute; display: block; bottom: -150px; will-change: transform, opacity; animation: tumbleUp linear infinite; opacity: 0; }
.cube-filled.blue { background: rgba(41, 98, 255, 0.15); }
.cube-filled.cyan { background: rgba(100, 206, 255, 0.15); }
.cube-filled.white { background: rgba(255, 255, 255, 0.08); }
.cube-outline { background: transparent; border-style: solid; }
.cube-outline.blue { border-color: rgba(41, 98, 255, 0.3); border-width: 2px; }
.cube-outline.cyan { border-color: rgba(100, 206, 255, 0.3); border-width: 2px; }
.cube-outline.white { border-color: rgba(255, 255, 255, 0.2); border-width: 1px; }
.small { width: 15px; height: 15px; }
.medium { width: 35px; height: 35px; }
.large { width: 60px; height: 60px; }
.blur { filter: blur(3px); }

@keyframes tumbleUp {
    0% { transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-50vh) translateX(20px) rotateX(180deg) rotateY(90deg); }
    100% { transform: translateY(-110vh) translateX(-20px) rotateX(360deg) rotateY(180deg) rotateZ(45deg); opacity: 0; }
}

.background-cubes-advanced span:nth-child(1) { left: 5%; animation-duration: 18s; animation-delay: -15s; }
.background-cubes-advanced span:nth-child(2) { left: 12%; animation-duration: 25s; animation-delay: -4s; }
.background-cubes-advanced span:nth-child(3) { left: 20%; animation-duration: 20s; animation-delay: -9s; }
.background-cubes-advanced span:nth-child(4) { left: 28%; animation-duration: 15s; animation-delay: -12s; }
.background-cubes-advanced span:nth-child(5) { left: 35%; animation-duration: 30s; animation-delay: -25s; }
.background-cubes-advanced span:nth-child(6) { left: 42%; animation-duration: 22s; animation-delay: -6s; }
.background-cubes-advanced span:nth-child(7) { left: 50%; animation-duration: 17s; animation-delay: -11s; }
.background-cubes-advanced span:nth-child(8) { left: 58%; animation-duration: 28s; animation-delay: -2s; }
.background-cubes-advanced span:nth-child(9) { left: 65%; animation-duration: 19s; animation-delay: -16s; }
.background-cubes-advanced span:nth-child(10){ left: 73%; animation-duration: 24s; animation-delay: -20s; }
.background-cubes-advanced span:nth-child(11){ left: 80%; animation-duration: 16s; animation-delay: -8s; }
.background-cubes-advanced span:nth-child(12){ left: 86%; animation-duration: 26s; animation-delay: -3s; }
.background-cubes-advanced span:nth-child(13){ left: 92%; animation-duration: 21s; animation-delay: -14s; }
.background-cubes-advanced span:nth-child(14){ left: 2%; animation-duration: 29s; animation-delay: -22s; }
.background-cubes-advanced span:nth-child(15){ left: 97%; animation-duration: 23s; animation-delay: -5s; }

.mobile-logo img {
    width: 35px !important;
    height: 35px !important;
    max-width: 35px !important;
    object-fit: contain;
    flex-shrink: 0;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 480px) {
    .feedback-summary {
        flex-direction: column;
        gap: 5px;
        border-radius: 12px;
        padding: 15px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .fb-floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 0;
        width: 50px;
    }
    .fb-text {
        display: none;
    }
}

@media (max-width: 600px) {
    .slider-btn { display: none; }
    .slider-container { gap: 0; }
}

@media (max-width: 768px) {
    .loader-text { font-size: 1.8rem; }
    .loader-bar { width: 150px; }
    
    #hero h1 { 
        font-size: 2.8rem; 
        font-weight: 700;
    }
    
    .hero-content .subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
    
    .header-container {
        justify-content: space-between;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        z-index: 2000;
        position: relative;
    }

    .hamburger { display: block; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        padding: 2rem;
    }

    .nav.active { right: 0; }

    .nav-link {
        font-size: 1.5rem;
        width: auto;
        text-align: center;
        padding: 10px 20px;
        border-radius: 8px;
        background: transparent;
        border: none;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--accent-color);
        transform: translateY(-3px);
    }

    .nav-link::after { display: none; }
    
    .server-card { flex-direction: column; text-align: center; border-left: none; border-top: 4px solid var(--accent-color); }
    .server-stats { justify-content: center; }
    .projects-grid { grid-template-columns: 1fr; }

    .logos-slider {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .logo-item {
        width: 150px;
        padding: 0 20px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 50px;
        filter: grayscale(0%) opacity(1);
    }

    .logos-track {
        width: calc(150px * 8); 
        animation: scroll 12s linear infinite;
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 4)); }
    }
}