:root {
    --primary-color: #203658;
    --secondary-color: #15243a;
    --tertiary-color: #10161e;
    --accent-color: #ecbc62;
    --bright-color: #456baa;
    --text-color: #a5b9c6;
    --feature-border: #2d4a70;
    --minecord-color: #4caf50;
    --bs-link-color-rgb: var(--accent-color);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a:link {
    color: var(--accent-color);
}

a:link:hover {
    color: #fff;
}

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

.inner-link:hover {
    color: #fff;
}

.navbar {
    background-color: var(--tertiary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background-color: rgba(255,255,255,0.1);
}

.navbar-nav {
    align-items: center;
}

.invite-nav-btn {
    background-color: var(--bright-color);
    color: white !important;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.invite-nav-btn:hover {
    background-color: var(--accent-color);
    color: white !important;
    text-decoration: none;
}

.hero-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    color: var(--accent-color);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.invite-button {
    display: inline-block;
    background-color: var(--bright-color);
    color: white !important;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease;
}

.invite-button a:link {
    color: white;
}

.invite-button:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.demo-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin-top: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.feature-item {
    background-color: var(--primary-color);
    padding: 2rem 2rem 1rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--feature-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.feature-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.minecord-card {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    border: 2px solid var(--feature-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    max-width: 450px;
    text-decoration: none !important;
}

.minecord-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.minecord-logo {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    margin-left: 1rem;
    flex-shrink: 0;
}

.minecord-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.minecord-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--minecord-color);
    margin: 0;
    line-height: 1.2;
}

.minecord-description {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
}

.minecord-card a {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.minecord-card a:hover {
    text-decoration: none !important;
    color: inherit !important;
}

@media (max-width: 768px) {
    .minecord-card {
        max-width: 375px;
        padding: 0.75rem;
    }

    .minecord-logo {
        width: 48px;
        height: 48px;
    }

    .minecord-title {
        font-size: 0.9rem;
    }

    .minecord-description {
        font-size: 0.75rem;
    }
}

.footer {
    background-color: var(--tertiary-color);
    color: white;
    padding: 2rem 0;
}

.footer-links {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .invite-nav-btn {
        margin-left: 0;
        margin-top: 1rem;
    }
}

.commands-section {
    background-color: var(--secondary-color);
    min-height: calc(100vh - 200px);
}

.category-title {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--feature-border);
}

.command-list {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    border: 1px solid var(--feature-border);
    margin-bottom: 1.5rem;
}

.command-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.5rem 1rem 0.5rem;
    border-bottom: 1px solid rgba(45, 74, 112, 0.3);
    transition: background-color 0.3s ease;
}

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

.command-item:hover {
    background-color: rgba(76, 107, 170, 0.1);
}

.command-id {
    background-color: var(--tertiary-color);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.9rem;
    border: 1px solid var(--feature-border);
}

.command-description {
    color: var(--text-color);
    font-size: 0.95rem;
    max-width: 60%;
    text-align: left;
}

@media (max-width: 768px) {
    .command-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .command-id {
        width: 100%;
        text-align: center;
    }
    
    .command-description {
        max-width: 100%;
        text-align: center;
    }
}

.terms-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

