:root {
    --primary: #7289DA;
    --primary-dark: #5b6eaa;
    --primary-light: #8c9ede;
    --secondary: #99AAB5;
    --text: #e0e0e0;
    --background: #2C2F33;
    --card-bg: #36393F;
    --accent: #FFB6C1;
    --shadow: rgba(0, 0, 0, 0.3);
    --header-bg: rgba(32, 34, 37, 0.95);
    --gradient-1: #7289DA;
    --gradient-2: #5865F2;
    --transition-slow: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-medium: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--background);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(114, 137, 218, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    overflow-x: hidden;
    font-size: 1rem;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(114, 137, 218, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 107, 107, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-medium);
}

header.scrolled {
    padding: 0.4rem 0;
    background: rgba(32, 34, 37, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

nav {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    z-index: 1001;
    transition: transform var(--transition-medium);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.5);
    transition: all var(--transition-medium);
    object-fit: cover;
}

.logo:hover .logo-img {
    transform: rotate(20deg);
    box-shadow: 0 0 25px rgba(114, 137, 218, 0.8);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    transform: translateX(-101%);
    transition: transform var(--transition-medium);
}

.nav-link:hover {
    color: white;
    transform: translateY(-3px);
}

.nav-link:hover::before {
    transform: translateX(0);
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(114, 137, 218, 0.4);
    z-index: 1;
}

.btn-primary i {
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-primary span {
    flex-shrink: 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-2), var(--gradient-1));
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(114, 137, 218, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-medium);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: rgba(153, 170, 181, 0.08);
    color: var(--text);
    border: 2px solid rgba(153, 170, 181, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary i {
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-secondary span {
    flex-shrink: 0;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(153, 170, 181, 0.15);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-navbar {
    padding: 0.58rem 1.17rem !important;
    font-size: 0.99rem !important;
    border-radius: 12px !important;
    min-width: auto !important;
    height: auto !important;
    transform: scale(0.99) !important;
    margin: 0 0.05rem !important;
}

.btn-navbar i {
    font-size: 0.8rem !important;
    margin-right: 0.3rem !important;
}

.btn-navbar span {
    font-size: 0.8rem !important;
}

.btn-navbar:hover {
    transform: scale(0.85) translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(114, 137, 218, 0.5) !important;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 70% 30%, #2d3035, #23272A 60%);
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
}

.discord-mockup {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discord-window {
    width: 100%;
    height: 100%;
    background: #2f3136;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid #40444b;
    animation: discord-float 6s infinite ease-in-out;
}

@keyframes discord-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.discord-titlebar {
    height: 40px;
    background: #36393f;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid #40444b;
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-right: 12px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.control-dot.close {
    background: #ff5f57;
}

.control-dot.minimize {
    background: #ffbd2e;
}

.control-dot.maximize {
    background: #28ca42;
}

.control-dot:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.window-title {
    color: #dcddde;
    font-size: 14px;
    font-weight: 500;
}

.discord-content {
    display: flex;
    height: calc(100% - 40px);
}

.discord-sidebar {
    width: 60px;
    background: #2f3136;
    border-right: 1px solid #40444b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
}

.server-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #36393f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dcddde;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.server-icon:hover {
    background: #5865f2;
    transform: scale(1.1);
}

.server-icon.discord-logo {
    background: #5865f2;
    color: white;
}

.server-icon.discord-logo:hover {
    background: #4752c4;
}

.discord-channels {
    width: 100%;
    background: #2f3136;
    padding: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 0;
    transition: width 0.3s ease;
}

.discord-chat {
    width: 0%;
    background: #36393f;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.discord-chat.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    width: 75%;
}

.discord-channels.chat-active {
    width: 25%;
}

.channel-category {
    margin-bottom: 20px;
}

.channel-category:first-child {
    margin-bottom: 24px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8e9297;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0 8px;
}

.channel-category:first-child .category-header {
    font-size: 13px;
    margin-bottom: 12px;
    padding: 0 10px;
}

.category-header .category-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-header i:first-child {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.category-header i:last-child {
    font-size: 10px;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.category-header:hover i:first-child {
    transform: rotate(90deg);
}

.category-header:hover i:last-child {
    opacity: 1;
    transform: scale(1.1);
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.channel-category:first-child .channel-list {
    gap: 4px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    color: #8e9297;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.channel-category:first-child .channel-item {
    padding: 7px 10px;
    font-size: 14px;
}

.channel-item:hover {
    background: #40444b;
    color: #dcddde;
}

.channel-item.active {
    background: #40444b;
    color: #dcddde;
}

.channel-item i {
    font-size: 12px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.channel-item span {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.channel-item i.fa-hashtag {
    color: #8e9297;
}

.channel-item i.fa-book {
    color: #5865f2;
}

.channel-item i.fa-stack-overflow {
    color: #5865f2;
}

.channel-item i.fa-globe {
    color: #5865f2;
}

.channel-item i.fa-camera {
    color: #5865f2;
}

.channel-item i.fa-laptop {
    color: #5865f2;
}

.channel-item i.fa-envelope {
    color: #f04747;
}

.channel-item i.fa-check-square {
    color: #43b581;
}

.channel-item i.fa-file-alt {
    color: #5865f2;
}

.channel-item i.fa-volume-up {
    color: #5865f2;
}

.channel-item i.fa-wave-square {
    color: #5865f2;
}

.channel-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.channel-meta i {
    font-size: 10px;
    color: #8e9297;
    opacity: 0.7;
}

.voice-channel {
    justify-content: space-between;
}

.voice-count {
    background: #40444b;
    color: #8e9297;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.chat-header {
    height: 50px;
    background: #36393f;
    border-bottom: 1px solid #40444b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.chat-channel-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dcddde;
    font-weight: 600;
}

.chat-channel-info i {
    color: #8e9297;
    font-size: 16px;
}

.chat-channel-name {
    font-size: 16px;
}

.chat-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.chat-actions i {
    color: #8e9297;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.chat-actions i:hover {
    color: #dcddde;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #36393f;
}

.welcome-message {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(114, 137, 218, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(114, 137, 218, 0.2);
}

.welcome-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.welcome-text h3 {
    color: #dcddde;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.welcome-text p {
    color: #8e9297;
    font-size: 14px;
    line-height: 1.4;
}

.message-container {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: messageSlideIn 0.5s ease forwards;
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5865f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.message-author {
    color: #dcddde;
    font-weight: 600;
    font-size: 14px;
}

.message-time {
    color: #8e9297;
    font-size: 12px;
}

.message-text {
    color: #dcddde;
    font-size: 14px;
    line-height: 1.4;
}

.message-text code {
    background: #2f3136;
    color: #f04747;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    opacity: 0;
    animation: typingFadeIn 0.3s ease forwards;
}

@keyframes typingFadeIn {
    to {
        opacity: 1;
    }
}

.typing-dots {
    display: flex;
    gap: 4px;
    margin-left: 52px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #8e9297;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.typing-text {
    color: #8e9297;
    font-size: 14px;
    font-style: italic;
}

.chat-input-container {
    padding: 16px;
    background: #36393f;
    border-top: 1px solid #40444b;
}

.chat-input {
    display: flex;
    align-items: center;
    background: #40444b;
    border-radius: 8px;
    padding: 8px 12px;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    background: none;
    border: none;
    color: #dcddde;
    font-size: 14px;
    outline: none;
}

.chat-input input::placeholder {
    color: #8e9297;
}

.chat-input input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.send-button {
    background: none;
    border: none;
    color: #8e9297;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.send-button:hover:not(:disabled) {
    color: #dcddde;
    background: rgba(255, 255, 255, 0.1);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bot-embed {
    background: #2f3136;
    border-left: 4px solid #5865f2;
    border-radius: 8px;
    padding: 16px;
    margin: 8px 0;
    max-width: 600px;
}

.embed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.embed-icon {
    color: #5865f2;
    font-size: 16px;
}

.embed-title {
    color: #dcddde;
    font-weight: 600;
    font-size: 16px;
}

.embed-description {
    color: #8e9297;
    font-size: 14px;
    margin-bottom: 16px;
    margin-left: 24px;
}

.embed-content {
    margin-bottom: 16px;
}

.embed-section {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #40444b;
}

.embed-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.embed-section-title {
    color: #dcddde;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.embed-section-content {
    margin-top: 8px;
}

.embed-item {
    color: #dcddde;
    font-size: 14px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.embed-copy-icon {
    color: #8e9297;
    font-size: 12px;
    cursor: pointer;
    opacity: 0.7;
}

.embed-copy-icon:hover {
    opacity: 1;
}

.embed-channel-link {
    color: #00b0f4;
    font-family: 'Consolas', 'Monaco', monospace;
}

.embed-access-level {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.embed-user-icon {
    color: #8e9297;
    font-size: 14px;
}

.embed-permissions {
    margin-left: 16px;
}

.embed-permission {
    color: #dcddde;
    font-size: 14px;
    margin-bottom: 2px;
}

.embed-yes {
    color: #43b581;
    font-weight: 600;
}

.embed-no {
    color: #f04747;
    font-weight: 600;
}

.embed-restriction {
    color: #8e9297;
    font-size: 13px;
    margin-bottom: 16px;
    margin-left: 24px;
}

.protection-list {
    margin-bottom: 16px;
}

.protection-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 8px 0;
}

.protection-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.protection-info {
    flex: 1;
}

.protection-title {
    color: #dcddde;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.protection-desc {
    color: #8e9297;
    font-size: 13px;
    line-height: 1.3;
}

.action-buttons {
    margin-top: 16px;
}

.button-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.action-btn.restricted {
    background: #f04747;
    color: white;
}

.action-btn.available {
    background: #43b581;
    color: white;
}

.action-btn.configure {
    background: #5865f2;
    color: white;
}

.action-btn.stop {
    background: transparent;
    color: #f04747;
    border: 1px solid #f04747;
}

.action-btn.disabled {
    background: #40444b;
    color: #8e9297;
    cursor: not-allowed;
    opacity: 0.6;
}

.action-btn:hover:not(.disabled) {
    opacity: 0.8;
    transform: translateY(-1px);
}

.modification-note {
    color: #8e9297;
    font-size: 12px;
    font-style: italic;
    margin-top: 12px;
    opacity: 0.7;
}

.embed-info {
    margin-bottom: 16px;
    margin-left: 24px;
}

.info-item {
    color: #8e9297;
    font-size: 13px;
    margin-bottom: 4px;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.setting-section {
    background: #40444b;
    border-radius: 8px;
    padding: 12px;
}

.setting-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.setting-icon {
    color: #5865f2;
    font-size: 14px;
}

.setting-title {
    color: #dcddde;
    font-weight: 600;
    font-size: 14px;
}

.setting-info {
    margin-left: 22px;
}

.setting-item {
    color: #8e9297;
    font-size: 13px;
    margin-bottom: 2px;
}

.channel-link {
    color: #00b0f4;
    font-family: 'Consolas', 'Monaco', monospace;
}

.channel-id {
    color: #8e9297;
    font-family: 'Consolas', 'Monaco', monospace;
}

.embed-selector {
    margin-top: 12px;
}

.category-dropdown {
    background: #2f3136;
    border: 1px solid #40444b;
    border-radius: 8px;
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-header {
    background: #40444b;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #2f3136;
}

.dropdown-header span {
    color: #dcddde;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-arrow {
    color: #8e9297;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-content.open {
    max-height: 250px;
    overflow-y: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #40444b;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #40444b;
}

.dropdown-item.selected {
    background: #40444b;
    border-left: 3px solid #5865f2;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    font-size: 16px;
    color: #8e9297;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item-content {
    flex: 1;
}

.dropdown-item-title {
    color: #dcddde;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.dropdown-count {
    color: #8e9297;
    font-weight: 400;
}

.dropdown-item-desc {
    color: #8e9297;
    font-size: 12px;
    line-height: 1.3;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    color: white;
    animation: fadeInUp 1.2s ease-out;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(114, 137, 218, 0.5);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0.6;
    border-radius: 4px;
}

.hero-text p {
    font-size: 1.4rem;
    color: #b9c1c9;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out 0.3s both;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    animation: fadeInUp 1.2s ease-out 0.5s both;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1.2s ease-out 1s both;
}

.mouse {
    width: 32px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    position: relative;
    opacity: 0.8;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    80% { transform: translate(-50%, 24px); opacity: 0; }
    81% { transform: translate(-50%, 0); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.hero-waves svg {
    display: block;
    width: calc(100% + 1.3px);
    height: auto;
    position: relative;
    animation: wave-animation 15s linear infinite alternate;
}

@keyframes wave-animation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1d21 0%, #2a2d31 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #40444b 100%);
    border: 1px solid #40444b;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(114, 137, 218, 0.1), transparent);
    transition: left var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(114, 137, 218, 0.2);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 24px rgba(114, 137, 218, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(114, 137, 218, 0.4);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.stat-card:hover .stat-number {
    color: var(--gradient-2);
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    opacity: 0.9;
    transition: all var(--transition-medium);
}

.stat-card:hover .stat-label {
    color: #ffffff;
    opacity: 1;
}

.servers-section {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.servers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(114, 137, 218, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(88, 101, 242, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.servers-container {
    position: relative;
    z-index: 1;
}

.servers-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--card-bg) 0%, #40444b 100%);
    border: 1px solid #40444b;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.servers-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0;
}

.server-card {
    min-width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: transparent;
    position: relative;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.05) 0%, rgba(88, 101, 242, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.server-card:hover::before {
    opacity: 1;
}

.server-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 24px rgba(114, 137, 218, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.server-card:hover .server-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(114, 137, 218, 0.5);
}

.server-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.server-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.server-card:hover .server-name {
    color: var(--gradient-2);
    transform: translateX(5px);
}

.server-members {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.server-card:hover .server-members {
    opacity: 1;
    color: #ffffff;
}

.server-members i {
    color: var(--primary);
    font-size: 1rem;
}

.servers-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.server-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(114, 137, 218, 0.4);
    position: relative;
    overflow: hidden;
}

.server-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.server-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.6);
}

.server-btn:hover::before {
    left: 100%;
}

.server-btn:active {
    transform: scale(0.95);
}

.server-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    border-radius: 4px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-section {
    background: #23272A;
    padding: 10rem 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.feature-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-slow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.feature-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(114, 137, 218, 0.2);
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(114, 137, 218, 0.4));
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
}

.feature-card:hover .feature-icon {
    transform: translateZ(20px) scale(1.2);
    color: white;
    filter: drop-shadow(0 0 20px rgba(114, 137, 218, 0.8));
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    transition: all var(--transition-medium);
    transform-style: preserve-3d;
}

.feature-card:hover h3 {
    color: white;
    transform: translateZ(15px);
}

.feature-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.8rem;
    transform-style: preserve-3d;
}

.feature-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-medium);
    transform-style: preserve-3d;
}

.feature-card ul li i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all var(--transition-medium);
}

.feature-card:hover ul li {
    transform: translateX(10px) translateZ(10px);
}

.feature-card:hover ul li i {
    transform: scale(1.2);
    color: white;
}

.setup-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, #2C2F33 0%, #23272A 100%);
    position: relative;
    z-index: 5;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.setup-step {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.setup-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, transparent, rgba(114, 137, 218, 0.1));
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.setup-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.setup-step:hover::before {
    opacity: 1;
}

.step-icon {
    position: relative;
    width: 90px;
    height: 90px;
    background: rgba(114, 137, 218, 0.1);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    transition: all var(--transition-slow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(114, 137, 218, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.setup-step:hover .step-icon {
    transform: rotateY(180deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(114, 137, 218, 0.5);
}

.step-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: all var(--transition-medium);
}

.setup-step:hover .step-content h3 {
    color: white;
}

.step-content p {
    color: var(--secondary);
    transition: all var(--transition-medium);
}

.setup-step:hover .step-content p {
    color: white;
}

.tech-section {
    padding: 10rem 0;
    background: #2C2F33;
    position: relative;
    z-index: 4;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.tech-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-slow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(114, 137, 218, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 1s var(--transition-slow);
}

.tech-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: all var(--transition-slow);
}

.tech-card:hover .tech-icon {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.tech-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: all var(--transition-medium);
}

.tech-card:hover h3 {
    color: white;
}

.tech-card p {
    color: var(--secondary);
    font-size: 1.05rem;
    transition: all var(--transition-medium);
}

.tech-card:hover p {
    color: white;
}

.tech-card:hover {
    transform: translateY(-15px);
    background: linear-gradient(145deg, var(--card-bg), var(--primary-dark));
    border-color: var(--primary-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.tech-card:hover::before {
    top: -50%;
    left: -50%;
    opacity: 0.3;
}

.commands-section {
    padding: 10rem 0;
    background: linear-gradient(0deg, #23272A 0%, #2C2F33 100%);
    position: relative;
    z-index: 3;
}

.commands-container {
    max-width: 850px;
    margin: 0 auto;
}

.commands-table {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: perspective(1000px);
}

.command-row {
    display: flex;
    align-items: center;
    padding: 1.8rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
    transform-style: preserve-3d;
}

.command-row:last-child {
    border-bottom: none;
}

.command-icon {
    width: 60px;
    height: 60px;
    background: rgba(114, 137, 218, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 2rem;
    transition: all var(--transition-slow);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.command-row:hover {
    background: rgba(114, 137, 218, 0.05);
    transform: translateX(10px) translateZ(5px);
}

.command-row:hover .command-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg) translateZ(20px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
}

.command-info {
    flex: 1;
    transform-style: preserve-3d;
}

.command-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: all var(--transition-medium);
}

.command-row:hover .command-name {
    color: white;
    transform: translateZ(10px);
}

.command-desc {
    color: var(--secondary);
    font-size: 1.05rem;
    transition: all var(--transition-medium);
}

.command-row:hover .command-desc {
    color: #b9c1c9;
    transform: translateZ(5px);
}
.about-section {
    padding: 10rem 0;
    background: #23272A;
    position: relative;
    z-index: 2;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.dev-card {
    background: var(--card-bg);
    border-radius: 25px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.dev-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-light);
}

.card-avatar {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--card-bg) 0%, rgba(54, 57, 63, 0.5) 50%, transparent 100%);
}

.dev-card:hover .card-img {
    transform: scale(1.1) rotate(3deg);
}

.card-body {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-body h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    transition: all var(--transition-medium);
}

.dev-card:hover .card-body h3 {
    color: white;
    transform: translateZ(10px);
}

.card-body p {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 1.8rem;
    transition: all var(--transition-medium);
}

.dev-card:hover .card-body p {
    color: #b9c1c9;
    transform: translateZ(5px);
}

.card-socials {
    display: flex;
    justify-content: center;
}


.card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(114, 137, 218, 0.1);
    color: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    background: var(--primary);
    color: white;
}

.footer {
    background: #202225;
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .card-container {
        gap: 1.5rem;
    }
    
    .discord-mockup {
        max-width: 800px;
        height: 380px;
    }
    
    .discord-window {
        border-radius: 10px;
    }
    
    .discord-titlebar {
        height: 40px;
        padding: 0 12px;
    }
    
    .control-dot {
        width: 12px;
        height: 12px;
    }
    
    .window-title {
        font-size: 13px;
    }
    
    .discord-content {
        height: calc(100% - 40px);
    }
    
    .discord-sidebar {
        width: 55px;
        padding: 12px 0;
        gap: 10px;
    }
    
    .server-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .discord-channels {
        padding: 12px;
    }
    
    .category-header {
        font-size: 12px;
        margin-bottom: 10px;
        padding: 0 10px;
    }
    
    .channel-category:first-child .category-header {
        font-size: 13px;
        margin-bottom: 12px;
        padding: 0 12px;
    }
    
    .channel-item {
        padding: 5px 10px;
        font-size: 14px;
    }
    
    .channel-category:first-child .channel-item {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .channel-item i {
        font-size: 12px;
        width: 16px;
    }
    
    .channel-meta i {
        font-size: 10px;
    }
    
    .voice-count {
        font-size: 11px;
        padding: 2px 5px;
    }
    
    .discord-chat.active {
        width: 75%;
    }
    
    .chat-header {
        height: 50px;
        padding: 0 16px;
    }
    
    .chat-channel-name {
        font-size: 16px;
    }
    
    .chat-actions {
        gap: 16px;
    }
    
    .chat-actions i {
        font-size: 16px;
    }
    
    .chat-messages {
        padding: 16px;
    }
    
    .welcome-message {
        padding: 20px;
        gap: 16px;
    }
    
    .welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .welcome-text h3 {
        font-size: 18px;
    }
    
    .welcome-text p {
        font-size: 15px;
    }
    
    .message-container {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .message-avatar {
        width: 42px;
        height: 42px;
    }
    
    .message-author {
        font-size: 15px;
    }
    
    .message-time {
        font-size: 13px;
    }
    
    .message-text {
        font-size: 15px;
    }
    
    .bot-embed {
        max-width: 100%;
        margin: 16px 0;
    }
    
    .embed-header {
        padding: 16px;
    }
    
    .embed-title {
        font-size: 17px;
    }
    
    .embed-description {
        font-size: 14px;
    }
    
    .embed-content {
        padding: 16px;
    }
    
    .embed-section {
        margin-bottom: 16px;
    }
    
    .embed-section-title {
        font-size: 15px;
    }
    
    .embed-section-desc {
        font-size: 13px;
    }
    
    .embed-item {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .category-dropdown {
        margin: 16px 0;
    }
    
    .dropdown-header {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .dropdown-content {
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 12px 16px;
    }
    
    .dropdown-item-title {
        font-size: 14px;
    }
    
    .dropdown-item-desc {
        font-size: 12px;
    }
    
    .protection-list {
        gap: 10px;
    }
    
    .protection-item {
        padding: 10px 14px;
    }
    
    .protection-title {
        font-size: 14px;
    }
    
    .protection-desc {
        font-size: 12px;
    }
    
    .action-buttons {
        gap: 10px;
        margin-top: 16px;
    }
    
    .action-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .chat-input-container {
        padding: 16px;
    }
    
    .chat-input {
        padding: 10px 14px;
    }
    
    .chat-input input {
        font-size: 15px;
    }
    
    .discord-channels {
        padding: 10px;
    }
    
    .category-header {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .channel-category:first-child .category-header {
        font-size: 12px;
        margin-bottom: 10px;
        padding: 0 8px;
    }
    
    .channel-item {
        padding: 4px 6px;
        font-size: 13px;
    }
    
    .channel-category:first-child .channel-item {
        padding: 5px 8px;
        font-size: 13px;
    }
    
    .channel-item i {
        font-size: 11px;
        width: 12px;
    }
    
    .channel-meta i {
        font-size: 9px;
    }
    
    .voice-count {
        font-size: 10px;
        padding: 1px 4px;
    }
    
    .discord-chat {
        display: none;
        opacity: 0;
        transform: translateX(20px);
    }
    
    .discord-chat.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
    }
    
    .chat-header {
        height: 40px;
        padding: 0 12px;
    }
    
    .chat-channel-name {
        font-size: 14px;
    }
    
    .chat-actions {
        gap: 12px;
    }
    
    .chat-actions i {
        font-size: 14px;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .welcome-message {
        padding: 16px;
        gap: 12px;
    }
    
    .welcome-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .welcome-text h3 {
        font-size: 16px;
    }
    
    .welcome-text p {
        font-size: 13px;
    }
    
    .message-container {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .message-avatar {
        width: 35px;
        height: 35px;
    }
    
    .message-author {
        font-size: 13px;
    }
    
    .message-time {
        font-size: 11px;
    }
    
    .message-text {
        font-size: 13px;
    }
    
    .chat-input-container {
        padding: 12px;
    }
    
    .chat-input {
        padding: 6px 10px;
    }
    
    .chat-input input {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0.6rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link {
        padding: 0.5rem;
        min-width: 44px;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(32, 34, 37, 0.98);
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left var(--transition-medium);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-link span {
        display: inline;
    }
    
    .nav-link {
        padding: 0.8rem 1.2rem;
        min-width: auto;
        justify-content: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .btn-primary i, .btn-secondary i {
        font-size: 0.9rem;
    }

    .btn-navbar {
        padding: 0.47rem 0.93rem !important;
        font-size: 0.87rem !important;
        transform: scale(0.87) !important;
    }

    .btn-navbar i {
        font-size: 0.7rem !important;
        margin-right: 0.2rem !important;
    }
    
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 0.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .btn-primary span, .btn-secondary span {
        display: none;
    }
    
    .btn-primary i, .btn-secondary i {
        font-size: 1rem;
    }

    .btn-navbar {
        padding: 0.41rem 0.82rem !important;
        font-size: 0.82rem !important;
        transform: scale(0.82) !important;
    }

    .btn-navbar i {
        font-size: 0.65rem !important;
        margin-right: 0.15rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid, .setup-steps, .tech-grid {
        gap: 1.5rem;
    }
    
    .command-row {
        padding: 1.2rem 1.5rem;
    }
    
    .command-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .discord-mockup {
        max-width: 100%;
        width: 100%;
        height: 350px;
        margin: 0 auto;
    }
    
    .discord-window {
        border-radius: 8px;
        height: 100%;
    }
    
    .discord-titlebar {
        height: 35px;
        padding: 0 10px;
    }
    
    .control-dot {
        width: 10px;
        height: 10px;
    }
    
    .window-title {
        font-size: 12px;
    }
    
    .discord-content {
        height: calc(100% - 35px);
    }
    
    .discord-sidebar {
        width: 50px;
        padding: 10px 0;
        gap: 8px;
    }
    
    .server-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .discord-channels {
        padding: 10px;
        width: 100%;
    }
    
    .discord-channels.chat-active {
        width: 100%;
    }
    
    .category-header {
        font-size: 11px;
        margin-bottom: 8px;
        padding: 0 8px;
    }
    
    .channel-category:first-child .category-header {
        font-size: 12px;
        margin-bottom: 10px;
        padding: 0 10px;
    }
    
    .channel-item {
        padding: 4px 8px;
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .channel-category:first-child .channel-item {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    .channel-item i {
        font-size: 11px;
        width: 14px;
    }
    
    .channel-meta i {
        font-size: 9px;
    }
    
    .voice-count {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .discord-chat {
        display: none;
        width: 0%;
    }
    
    .discord-chat.active {
        display: flex;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #36393f;
        z-index: 10;
    }
    
    .chat-header {
        height: 45px;
        padding: 0 15px;
    }
    
    .chat-channel-name {
        font-size: 15px;
    }
    
    .chat-actions {
        gap: 15px;
    }
    
    .chat-actions i {
        font-size: 15px;
    }
    
    .chat-messages {
        padding: 15px;
        flex: 1;
        overflow-y: auto;
    }
    
    .welcome-message {
        padding: 20px;
        gap: 15px;
    }
    
    .welcome-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .welcome-text h3 {
        font-size: 17px;
    }
    
    .welcome-text p {
        font-size: 14px;
    }
    
    .message-container {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .message-avatar {
        width: 40px;
        height: 40px;
    }
    
    .message-author {
        font-size: 14px;
    }
    
    .message-time {
        font-size: 12px;
    }
    
    .message-text {
        font-size: 14px;
    }
    
    .bot-embed {
        max-width: 100%;
        margin: 15px 0;
    }
    
    .embed-header {
        padding: 15px;
    }
    
    .embed-title {
        font-size: 16px;
    }
    
    .embed-description {
        font-size: 13px;
    }
    
    .embed-content {
        padding: 15px;
    }
    
    .embed-section {
        margin-bottom: 15px;
    }
    
    .embed-section-title {
        font-size: 14px;
    }
    
    .embed-section-desc {
        font-size: 12px;
    }
    
    .embed-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .category-dropdown {
        margin: 15px 0;
    }
    
    .dropdown-header {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .dropdown-content {
        padding: 8px 0;
    }
    
    .dropdown-item {
        padding: 10px 15px;
    }
    
    .dropdown-item-title {
        font-size: 13px;
    }
    
    .dropdown-item-desc {
        font-size: 11px;
    }
    
    .protection-list {
        gap: 8px;
    }
    
    .protection-item {
        padding: 8px 12px;
    }
    
    .protection-title {
        font-size: 13px;
    }
    
    .protection-desc {
        font-size: 11px;
    }
    
    .action-buttons {
        gap: 8px;
        margin-top: 15px;
    }
    
    .action-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .chat-input-container {
        padding: 15px;
    }
    
    .chat-input {
        padding: 8px 12px;
    }
    
    .chat-input input {
        font-size: 14px;
    }
    
    .servers-section {
        padding: 4rem 0;
    }
    
    .server-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .server-avatar {
        width: 60px;
        height: 60px;
    }
    
    .server-name {
        font-size: 1.5rem;
    }
    
    .server-members {
        font-size: 1rem;
    }
    
    .server-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.discord-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="discord-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%237289DA" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23discord-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.discord-container {
    position: relative;
    z-index: 2;
}

.discord-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(114, 137, 218, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
    max-width: 800px;
    margin: 0 auto;
}

.discord-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(114, 137, 218, 0.4);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(114, 137, 218, 0.2);
}

.discord-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(114, 137, 218, 0.4);
    transition: all var(--transition-medium);
}

.discord-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(114, 137, 218, 0.6);
}

.discord-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.discord-info p {
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.discord-widget {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(114, 137, 218, 0.3);
    transition: all var(--transition-medium);
}

.discord-widget:hover {
    border-color: rgba(114, 137, 218, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.discord-widget iframe {
    display: block;
    border: none;
    width: 100%;
    height: 400px;
    background: var(--card-bg);
}

.discord-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.discord-actions .btn-primary,
.discord-actions .btn-secondary {
    min-width: 180px;
    justify-content: center;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.discord-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(114, 137, 218, 0.4);
}

.discord-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(153, 170, 181, 0.4);
}

@media (max-width: 768px) {
    .discord-section {
        padding: 4rem 0;
    }
    
    .discord-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .discord-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .discord-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .discord-info h3 {
        font-size: 1.8rem;
    }
    
    .discord-info p {
        font-size: 1rem;
    }
    
    .discord-widget iframe {
        height: 350px;
    }
    
    .discord-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .discord-actions .btn-primary,
    .discord-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .discord-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .discord-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .discord-info h3 {
        font-size: 1.6rem;
    }
    
    .discord-widget iframe {
        height: 300px;
    }
}