/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Free AI Banner */
.free-ai-banner {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00d9ff 0%, #ff6b35 100%);
    color: #000;
    padding: 8px 0;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
    animation: banner-slide-down 0.6s ease-out;
}

/* Maintenance Banner */
.maintenance-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
    padding: 12px 0;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    animation: banner-slide-down 0.6s ease-out;
    text-align: center;
    font-weight: 600;
}

@keyframes banner-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.banner-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.banner-close {
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.free-ai-banner.hidden {
    display: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 54px; /* Account for fixed banner */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 20px;
}

/* Discord Login Button */
.btn-discord-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: linear-gradient(45deg, #4752c4, #5b6eae);
}

.btn-discord-login .discord-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Discord Login Button */
.btn-discord-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: linear-gradient(45deg, #4752c4, #5b6eae);
}

.btn-discord-login .discord-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* User Profile Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.user-profile-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-1px);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #00d9ff;
    object-fit: cover;
    flex-shrink: 0;
}

.user-username {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.user-dropdown.active .user-dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    margin-top: 8px;
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-item:hover {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    padding-left: 20px;
}

.user-dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.user-dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {
    font-size: 24px;
    font-weight: 600;
    color: #00d9ff;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link:active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #00d9ff;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s ease;
}

.nav-dropdown-toggle:hover::before,
.nav-dropdown-toggle.active::before {
    width: 100%;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: #00d9ff;
}

.nav-dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.nav-dropdown.active .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    padding-left: 20px;
}

.nav-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.nav-dropdown-item:only-child {
    border-radius: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #00d9ff;
    background: linear-gradient(45deg, #00d9ff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #00d9ff, #00f5ff);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #00d9ff;
    border: 2px solid #00d9ff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #00d9ff;
    color: #000;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-hero img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 217, 255, 0.3);
    animation: rotate 10s linear infinite;
}

.circle1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.circle2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    animation: float-odd 6s ease-in-out infinite;
}

.shape1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-odd {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #00d9ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 245, 255, 0.1) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 50px 0;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d9ff;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Commands Page Styles */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(0, 245, 255, 0.1) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.commands-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.3);
}

.commands-grid {
    display: grid;
    gap: 50px;
}

.command-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.command-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.category-icon {
    font-size: 3rem;
    margin-right: 20px;
    width: 60px;
    text-align: center;
}

.category-header h2 {
    color: #00d9ff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.commands-list {
    display: grid;
    gap: 20px;
}

.command-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.command-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.1);
}

.command-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.command-header code {
    background: rgba(0, 217, 255, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #00d9ff;
    font-weight: 500;
}

.command-type {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.command-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.command-sub {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-command {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.sub-command code {
    background: rgba(0, 217, 255, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #00d9ff;
}

.sub-command:last-child {
    margin-bottom: 0;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    color: #00d9ff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.about-text ul li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 8px;
}

.about-text ul li strong {
    color: #00d9ff;
}

.timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 65px;
    top: 50px;
    width: 2px;
    height: calc(100% - 50px + 30px);
    background: rgba(0, 217, 255, 0.3);
}

.timeline-date {
    background: rgba(0, 217, 255, 0.2);
    color: #00d9ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    font-size: 0.9rem;
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.tech-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.tech-item h4 {
    color: #00d9ff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stats-card {
    text-align: center;
    padding: 20px;
}

.stats-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 10px;
}

.stats-card .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-card h3 {
    color: #00d9ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sidebar-card .version {
    background: rgba(0, 217, 255, 0.2);
    color: #00d9ff;
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.sidebar-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.sidebar-card a:not(.btn) {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.sidebar-card a:not(.btn):hover {
    color: #00d9ff;
}

.sidebar-card ul {
    padding-left: 0;
    list-style: none;
}

.sidebar-card ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    padding: 5px 0;
}

/* Enhanced Legal Pages Styles with Animation */
.legal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(10, 10, 10, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    animation: legal-bg-float 20s ease-in-out infinite;
}

@keyframes legal-bg-float {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(1deg); }
    50% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(1.05) rotate(1deg); }
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: legal-content-appear 1s ease-out;
}

@keyframes legal-content-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d9ff, #ff6b35, #00d9ff);
    border-radius: 20px 20px 0 0;
    animation: legal-border-glow 3s ease-in-out infinite alternate;
}

@keyframes legal-border-glow {
    from { box-shadow: 0 0 20px rgba(0, 217, 255, 0.5); }
    to { box-shadow: 0 0 40px rgba(0, 217, 255, 0.8), 0 0 80px rgba(255, 107, 53, 0.3); }
}

.legal-content h2 {
    color: #00d9ff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    position: relative;
    display: inline-block;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    border-radius: 2px;
    animation: legal-heading-underline 2s ease-in-out infinite alternate;
}

@keyframes legal-heading-underline {
    from {
        width: 30px;
        opacity: 0.7;
    }
    to {
        width: 90px;
        opacity: 1;
    }
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 30px 0 15px 0;
    position: relative;
    padding-left: 25px;
}

.legal-content h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-size: 1rem;
    animation: legal-arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes legal-arrow-pulse {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.2); opacity: 1; }
}

.legal-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.legal-content ul {
    margin: 25px 0;
    padding-left: 30px;
    list-style: none;
}

.legal-content ul li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.legal-content ul li::before {
    content: '🔸';
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-size: 1.2rem;
    animation: legal-bullet-rotate 4s linear infinite;
}

@keyframes legal-bullet-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.legal-notice {
    background: linear-gradient(135deg, rgba(217, 255, 0, 0.15) 0%, rgba(255, 215, 0, 0.25) 100%);
    border: 2px solid rgba(217, 255, 0, 0.5);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(217, 255, 0, 0.2);
    animation: legal-notice-glow 2s ease-in-out infinite alternate;
}

@keyframes legal-notice-glow {
    from {
        box-shadow: 0 10px 30px rgba(217, 255, 0, 0.2);
        transform: translateY(0);
    }
    to {
        box-shadow: 0 15px 40px rgba(217, 255, 0, 0.4);
        transform: translateY(-2px);
    }
}

.legal-notice h2 {
    color: #d9ff00;
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(217, 255, 0, 0.5);
}

/* Enhanced Policy Cards */
.policy-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.policy-card:hover::before {
    left: 100%;
}

.policy-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.3);
}

.policy-card h3 {
    color: #00d9ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.policy-card.warning {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 140, 0, 0.15) 100%);
    border-color: rgba(255, 69, 0, 0.3);
}

.policy-card.warning h3 {
    color: #ff4500;
}

/* Feature Lists and Service Cards */
.feature-list {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #00d9ff;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-left-color: #ff6b35;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 217, 255, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    animation: service-icon-float 3s ease-in-out infinite;
}

@keyframes service-icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Age Restriction Styles */
.age-restriction {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.age-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 120px;
}

.age-card:hover {
    border-color: #00d9ff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.age-card h3 {
    color: #00d9ff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Prohibition Grid with Animations */
.prohibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.prohibition-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.prohibition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prohibition-card:hover::before {
    opacity: 1;
}

.prohibition-card.danger {
    border-color: rgba(255, 69, 0, 0.4);
}

.prohibition-card.danger:hover {
    border-color: rgba(255, 69, 0, 0.8);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.prohibition-card.warning {
    border-color: rgba(255, 165, 0, 0.4);
}

.prohibition-card.warning:hover {
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.prohibition-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prohibition-card.danger h3::before {
    content: '❌';
    color: #ff4500;
}

.prohibition-card.warning h3::before {
    content: '⚠️';
    color: #ffa500;
}

.prohibition-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.contact-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.2);
}

/* Particle Effects */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    border-radius: 50%;
    animation: particle-drift 15s linear infinite;
    opacity: 0.6;
}

@keyframes particle-drift {
    0% {
        transform: translateY(100vh) translateX(0px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10px) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* Enhanced Glass Morphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 16px;
    pointer-events: none;
}

/* Text Effects */
.text-glow {
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    animation: text-glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes text-glow-pulse {
    from {
        text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
        filter: brightness(1);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 30px rgba(255, 107, 53, 0.3);
        filter: brightness(1.1);
    }
}

/* Interactive Elements */
.interactive-element {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .prohibition-grid {
        grid-template-columns: 1fr;
    }

    .age-restriction {
        flex-direction: column;
        align-items: center;
    }
}

/* Commands Page Sidebar */
.commands-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.3);
}

.commands-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.commands-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.commands-sidebar h3 {
    color: #00d9ff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.category-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
    border-left: 3px solid transparent;
}

.category-link:hover {
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
    transform: translateX(5px);
}

.category-link.active {
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.2);
    border-left-color: #00d9ff;
}

.commands-main {
    padding-right: 20px;
}

.commands-grid {
    display: grid;
    gap: 50px;
}

.command-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    scroll-margin-top: 80px;
}

.command-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.category-header {
    margin-bottom: 15px;
}

.category-header h2 {
    color: #00d9ff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

.commands-list {
    display: grid;
    gap: 20px;
}

.command-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.command-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.1);
}

.command-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.command-header code {
    background: rgba(0, 217, 255, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #00d9ff;
    font-weight: 500;
}

.command-type {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.command-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.command-sub {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-command {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.sub-command code {
    background: rgba(0, 217, 255, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #00d9ff;
}

.sub-command:last-child {
    margin-bottom: 0;
}

/* Updated stats animation */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide source code */
@media print {
    *,
    *::before,
    *::after {
        display: none !important;
    }
}

/* Prevent right-click and hotkeys */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent dev tools */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Prevent image copying and context menu */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}

/* Disable context menu globally */
* {
    -webkit-touch-callout: none;
}

body, html {
    -webkit-touch-callout: none;
}

/* Disable image drag and drop */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Additional image protection */
.logo, .logo-hero img, .footer-logo {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    user-drag: none;
    pointer-events: none;
    user-select: none;
}

/* Context menu prevention */
body {
    -webkit-touch-callout: none;
    -webkit-touch-callout: none !important;
}

/* Image overlay protection */
.image-protected {
    position: relative;
}

.image-protected::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

/* SVG protection */
svg {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Mobile Navigation */
/* Mobile Scrolling Menu Button */
.mobile-side-menu-toggle {
    display: none;
    position: fixed;
    top: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.mobile-side-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.15);
}

.mobile-side-menu-toggle::before {
    content: '≡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #00d9ff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Side Menu Overlay */
.mobile-side-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(0, 217, 255, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-side-menu-overlay.active {
    right: 0;
}

.mobile-side-menu-content {
    padding: 80px 30px 30px;
    height: 100%;
    overflow-y: auto;
    position: relative;
}

.mobile-side-menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Side Menu Header */
.side-menu-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.side-menu-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    border-radius: 1px;
}

.side-menu-logo {
    font-size: 28px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.side-menu-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* Side Menu Navigation */
.side-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-menu-nav-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
}

.side-menu-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.side-menu-nav-item:hover::before {
    left: 100%;
}

.side-menu-nav-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.1);
}

.side-menu-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.side-menu-nav-link:hover {
    color: #00d9ff;
}

.side-menu-nav-icon {
    width: 24px;
    text-align: center;
    font-size: 18px;
    opacity: 0.8;
}

.side-menu-nav-text {
    flex: 1;
}

.side-menu-nav-item.active .side-menu-nav-link {
    color: #00d9ff;
}

.side-menu-nav-item.active {
    background: rgba(0, 217, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.4);
}

/* Side Menu Actions */
.side-menu-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.side-menu-btn-primary {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00d9ff, #00f5ff);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.side-menu-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
}

.side-menu-btn-secondary {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #00d9ff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.side-menu-btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

/* Close Button for Side Menu */
.mobile-side-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    z-index: 1002;
    transition: all 0.3s ease;
}

.mobile-side-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.mobile-nav-content .nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-nav-content .nav-link {
    font-size: 1.8rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-content .nav-link::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s ease;
}

.mobile-nav-content .nav-link:hover::before,
.mobile-nav-content .nav-link.active::before {
    width: 100%;
}

.mobile-nav-content .nav-link:hover,
.mobile-nav-content .nav-link.active {
    color: #00d9ff;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-actions .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Page Transitions */
.page-transition {
    animation: pageFadeIn 0.6s ease-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    animation: fadeInOut 2s infinite;
}

.scroll-indicator:hover {
    background: rgba(0, 217, 255, 0.4);
    transform: scale(1.1);
}

.scroll-indicator.show {
    opacity: 1;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.5rem;
    color: #00d9ff;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Active page highlighting */
.current-page {
    color: #00d9ff !important;
}

.current-page::before {
    width: 100% !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-side-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        padding: 40px 20px 30px !important;
        text-align: center;
        gap: 40px !important;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        margin-bottom: 20px !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }

    .logo-hero img {
        width: 120px !important;
        height: 120px !important;
    }

    .floating-shapes {
        display: none !important;
    }

    .animated-circle {
        display: none !important;
    }

    /* Features Section */
    .features {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-card {
        padding: 20px !important;
    }

    .feature-icon {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }

    .feature-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }

    /* Stats Section */
    .stats {
        padding: 50px 0 !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    .stat-label {
        font-size: 1rem !important;
    }

    /* About Page */
    .about-section {
        padding: 50px 0 !important;
    }

    .about-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-text h2 {
        font-size: 1.6rem !important;
        margin-top: 30px !important;
    }

    .about-text h3 {
        font-size: 1.3rem !important;
        margin-top: 25px !important;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .timeline-item::before {
        display: none !important;
    }

    .timeline-date {
        min-width: auto !important;
        width: 120px !important;
    }

    .tech-info {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .stats-cards {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .sidebar {
        position: static !important;
        top: auto !important;
    }

    .sidebar-card {
        margin-bottom: 20px !important;
    }

    /* Commands Page */
    .page-hero {
        padding: 50px 0 30px !important;
    }

    .page-title {
        font-size: 2rem !important;
    }

    .page-subtitle {
        font-size: 1rem !important;
    }

    .commands-section {
        padding: 50px 0 !important;
    }

    .commands-wrapper {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .commands-sidebar {
        position: static !important;
        height: auto !important;
    }

    .commands-sidebar h3 {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
    }

    .category-nav {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .category-link {
        text-align: center !important;
        padding: 12px 8px !important;
        font-size: 0.9rem !important;
    }

    .commands-main {
        padding-right: 0 !important;
    }

    .command-category {
        padding: 20px !important;
    }

    .category-header h2 {
        font-size: 1.6rem !important;
    }

    .command-card {
        padding: 15px !important;
    }

    .command-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .command-header code {
        font-size: 1rem !important;
        padding: 4px 8px !important;
    }

    /* Legal Pages */
    .legal-section {
        padding: 50px 0 !important;
    }

    .legal-content {
        padding: 20px !important;
        margin: 0 10px !important;
    }

    .legal-content h2 {
        font-size: 1.5rem !important;
    }

    .legal-content h3 {
        font-size: 1.1rem !important;
        padding-left: 20px !important;
    }

    .legal-content p {
        font-size: 1rem !important;
    }

    .legal-content ul {
        padding-left: 20px !important;
    }

    .legal-content ul li {
        padding-left: 20px !important;
        font-size: 0.9rem !important;
    }

    .legal-notice {
        padding: 20px !important;
        margin: 25px 0 !important;
    }

    .policy-card {
        padding: 20px !important;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        padding: 20px !important;
    }

    .prohibition-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .prohibition-card {
        padding: 20px !important;
    }

    .contact-section {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .contact-link {
        padding: 15px !important;
        font-size: 0.9rem !important;
    }

    /* Footer */
    .footer {
        padding: 30px 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }

    .footer-section a {
        font-size: 0.9rem !important;
        padding: 3px 0 !important;
    }

    /* Blog Styles */
    .blog-header-index {
        padding: 100px 0 40px !important;
    }

    .blog-title-main {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }

    .blog-subtitle {
        font-size: 1rem !important;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .blog-card {
        padding: 25px !important;
    }

    .blog-card-title a {
        font-size: 1.3rem !important;
    }

    .blog-meta {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .blog-title {
        font-size: 2.2rem !important;
    }

    .event-highlights {
        grid-template-columns: 1fr !important;
    }

    .event-dates {
        padding: 20px !important;
    }

    .date-main {
        font-size: 1.3rem !important;
    }

    .participate-steps {
        gap: 15px !important;
    }

    .step {
        padding: 15px !important;
    }

    .share-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .share-btn {
        width: 100% !important;
        max-width: 250px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .mobile-nav-content .nav-links {
        gap: 20px;
    }

    .mobile-nav-content .nav-link {
        font-size: 1.4rem;
    }

    .hero-content {
        padding: 40px 15px 30px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .about-text h2,
    .about-text h3 {
        font-size: 1.3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .legal-content h2 {
        font-size: 1.4rem;
    }

    .legal-content h3 {
        font-size: 1rem;
    }

    .prohibition-card h3 {
        font-size: 1.1rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}

/* Blog Index Styles */
.blog-header-index {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    text-align: center;
}

.blog-title-main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.blog-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 40px;
}

/* Blog Tabs */
.blog-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blog-tab:hover::before {
    left: 100%;
}

.blog-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
}

.blog-tab.active {
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    color: #000;
    border-color: #00d9ff;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
    font-weight: 600;
}

.blog-tab.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
}

.blog-posts-wrapper {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.blog-card.featured {
    border-color: #00d9ff;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff4500);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.post-author {
    color: #00d9ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.post-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.blog-card-title {
    margin-bottom: 15px;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #00d9ff;
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.read-more-btn {
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.coming-soon {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
    text-align: center;
}

.coming-soon-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 500px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.coming-soon h3 {
    color: #00d9ff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.coming-soon p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Blog Post Styles */
.blog-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 245, 255, 0.05) 100%);
    text-align: center;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #00d9ff;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    color: #00d9ff;
    font-size: 1.1rem;
}

.post-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content-wrapper {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.5);
}

.blog-main {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-content h2 {
    color: #00d9ff;
    font-size: 2rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 35px 0 15px 0;
    font-weight: 500;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.highlight-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.highlight-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.event-dates {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00d9ff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin: 30px 0;
}

.date-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.date-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.date-item {
    background: rgba(0, 217, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.why-list, .future-plans {
    margin: 25px 0;
}

.why-item, .plan-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #00d9ff;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-item:hover, .plan-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.participate-steps {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.step-text strong {
    color: #00d9ff;
}

.note {
    background: linear-gradient(135deg, rgba(217, 255, 0, 0.15) 0%, rgba(255, 215, 0, 0.25) 100%);
    border: 2px solid rgba(217, 255, 0, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    color: #ffffff;
}

.final-message {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.3);
    margin: 40px 0;
}

.final-message h3 {
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.signature {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 1.1rem;
}

.share-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.share-widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.share-widget h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.share-btn.discord {
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
}

.share-btn.discord:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.share-btn.twitter {
    background: linear-gradient(45deg, #1da1f2, #42a5f5);
    color: white;
}

.share-btn.twitter:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.share-btn.copy {
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    color: #000;
}

.share-btn.copy:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.back-section {
    padding: 40px 0;
    background: rgba(10, 10, 10, 0.8);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(45deg, #00d9ff, #ff6b35);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

/* Large Mobile / Small Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
        padding: 50px 25px 40px !important;
    }

    .hero-image {
        order: -1;
        margin-bottom: 25px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 2.8rem) !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-content {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .commands-wrapper {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr !important;
    }

    .event-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .participate-steps {
        gap: 18px !important;
    }

    .step {
        padding: 18px !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 100px 40px 60px !important;
        gap: 50px !important;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .about-content {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .commands-wrapper {
        grid-template-columns: 280px 1fr !important;
        gap: 30px !important;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .blog-meta {
        flex-direction: row !important;
        text-align: left !important;
        gap: 20px !important;
    }

    .blog-title {
        font-size: 2.5rem !important;
    }

    .event-highlights {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .step {
        flex-direction: row !important;
        text-align: left !important;
        gap: 20px !important;
    }

    .share-buttons {
        justify-content: center !important;
    }

    .share-btn {
        min-width: 120px !important;
    }
}

/* Large Tablet / Small Desktop */
@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 60px !important;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .about-content {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .commands-wrapper {
        grid-template-columns: 320px 1fr !important;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .event-highlights {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce backdrop-filter usage on mobile for better performance */
    .navbar {
        backdrop-filter: none !important;
        background: rgba(10, 10, 10, 0.95) !important;
    }

    .feature-card,
    .sidebar-card,
    .command-category,
    .command-card {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    /* Disable heavy animations on mobile */
    .floating-shapes,
    .animated-circle,
    .particle-container {
        display: none !important;
    }

    /* Reduce animation complexity */
    .feature-card::before,
    .command-card::before,
    .side-menu-nav-item::before {
        display: none !important;
    }

    /* Simplify hover effects */
    .feature-card:hover,
    .command-card:hover,
    .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* Optimize text rendering */
    * {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        text-rendering: optimizeLegibility !important;
    }
}
