/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: hidden;
    background: linear-gradient(180deg, #111 0%, #1a1a1a 50%, #111 100%);
    background-attachment: fixed; /* keep same background when scrolling */
}

/* Background Animation removed: using static dark grey/black background via body styles. */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #FF8C00;
    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;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8C00;
    text-decoration: none;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    text-decoration: none;
    color: #FF8C00;
    transform: translateY(-1px);
}

.logo-link h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8C00;
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-image:hover {
    transform: scale(1.05) rotate(3deg);
    animation-play-state: paused;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    animation: blockRotate 4s ease-in-out infinite;
}

@keyframes blockRotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link[target="_blank"] {
    position: relative;
}

.nav-link[target="_blank"]:after {
    content: '↗';
    font-size: 0.8rem;
    margin-left: 5px;
    opacity: 0.7;
}

.nav-link[target="_blank"]:hover:after {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FF8C00;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/2025-09-10_19.28.05.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-word {
    display: inline-block;
    margin-right: 20px;
    animation: titleFloat 3s ease-in-out infinite;
}

.title-word:nth-child(1) { animation-delay: 0s; }
.title-word:nth-child(2) { animation-delay: 0.5s; }
.title-word:nth-child(3) { animation-delay: 1s; }
.title-word:nth-child(4) { animation-delay: 1.5s; }

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.5s both;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 1s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    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(135deg, #FF8C00, #FFA500);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 140, 0, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.25);
}



/* Minecraft Blocks Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: fadeInRight 1s ease 0.8s both;
}

.feature-item {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    position: relative;
    animation: featureFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-item i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-item span {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.feature-item:nth-child(1) { animation-delay: 0s; }
.feature-item:nth-child(2) { animation-delay: 0.5s; }
.feature-item:nth-child(3) { animation-delay: 1s; }
.feature-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes featureFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.land-claim {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.85), rgba(255, 165, 0, 0.85));
}

.economy {
    background: linear-gradient(135deg, rgba(255, 159, 64, 0.85), rgba(255, 193, 7, 0.85));
}

.pvp {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.85), rgba(255, 140, 0, 0.85));
}

.custom {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.85), rgba(211, 84, 0, 0.85));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #FF8C00;
    border-bottom: 3px solid #FFA500;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.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(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.12), rgba(255, 168, 0, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #FF8C00;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-link {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-link:hover {
    color: #FFA500;
    transform: translateX(5px);
}

/* Video Showcase Section */
.video-showcase {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-preview {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-preview:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    z-index: 10;
}

.play-button i {
    margin-left: 3px; /* Slight offset to center the triangle visually */
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Fallback for Font Awesome loading issues */
.play-button::before {
    content: '▶';
    font-size: 1.8rem;
    color: white;
    position: absolute;
    margin-left: 3px;
    z-index: -1;
}

.video-preview:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

.video-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #FF8C00;
}

.video-overlay p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

/* Server Features Description Section */
.server-features-description {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.server-features-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    pointer-events: none;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-block {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-block:hover::before {
    left: 100%;
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.feature-block h3 {
    color: #FF8C00;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-block h3 i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.feature-block p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

.call-to-action-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-main {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.scroll-prompt {
    font-size: 1.2rem;
    color: #FF8C00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 20px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.scroll-prompt:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

/* Server Gallery Section */
.server-gallery {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #FF8C00;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-player iframe,
.video-player video {
    border-radius: 15px;
}

/* Quick Commands Section */
.quick-commands {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.commands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.command-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.command-category h3 {
    color: #FF8C00;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.command-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 4px solid #FF8C00;
    transition: all 0.3s ease;
}

.command-item:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateX(5px);
}

.command-item code {
    background: rgba(255, 140, 0, 0.2);
    color: #FF8C00;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.command-item span {
    color: #ccc;
    font-style: italic;
}

.commands-cta {
    text-align: center;
}



/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 0 20px;
    border-top: 2px solid #FF8C00;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #FF8C00;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF8C00;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF8C00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .commands-container {
        grid-template-columns: 1fr;
    }
    
    .video-showcase {
        padding: 60px 0;
    }
    
    .video-container {
        margin: 0 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-overlay {
        padding: 30px 20px 20px;
    }
    
    .video-overlay h3 {
        font-size: 1.2rem;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .server-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        width: 80px;
        height: 80px;
    }
    
    .feature-item i {
        font-size: 20px;
    }
    
    .feature-item span {
        font-size: 10px;
    }
    
    .feature-card,
    .command-category {
        padding: 20px;
    }
    
    .commands-container {
        grid-template-columns: 1fr;
    }
    
    .command-category {
        min-width: auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF8C00, #FFA500);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFA500, #FFC107);
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features CTA Button */
.features-cta {
    text-align: center;
    margin-top: 40px;
}

/* Plugins Grid */
.plugins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plugin-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.plugin-card:hover {
    transform: translateY(-5px);
    border-color: #FF8C00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.plugin-icon {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 20px;
}

.plugin-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.plugin-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Commands Sections */
.commands-sections {
    margin-top: 40px;
}

.command-section {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.command-section-title {
    font-size: 1.8rem;
    color: #FF8C00;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.command-section-title i {
    font-size: 1.5rem;
}

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

.command-section .command-item {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    min-height: 60px;
    transition: all 0.3s ease;
}

.command-section .command-item:hover {
    border-color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
}

.command-section .command-item code {
    background: rgba(255, 140, 0, 0.2);
    color: #FF8C00;
    padding: 6px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.command-section .command-item span {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: right;
}

/* Navigation Active State */
.nav-link.active {
    color: #FF8C00;
    font-weight: bold;
}

/* Server Info Header */
.server-info-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid #ff6b35;
    padding: 15px 0;
}

.server-info-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.server-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.server-detail i {
    color: #ff6b35;
    font-size: 1rem;
}

/* Discord Button */
.btn-discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752c4 0%, #3c45a5 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    color: white;
    text-decoration: none;
}

/* Hero Buttons Layout */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Simple Footer */
.simple-footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px 0;
    margin-top: 40px;
}

.simple-footer p {
    text-align: center;
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* Footer Centered Layout */
.footer-centered {
    justify-content: center;
    gap: 80px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .plugins-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .command-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .command-section {
        padding: 20px;
    }
    
    .command-section .command-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-height: auto;
    }
    
    .command-section .command-item span {
        text-align: left;
        font-size: 0.85rem;
    }
    
    .plugin-card {
        padding: 20px;
    }
    
    .footer-centered {
        gap: 40px;
    }
    
    .server-info-content {
        gap: 20px;
        flex-direction: column;
    }
    
    .server-detail {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-discord {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}