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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #2a2a2a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.top-social-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(75, 140, 165, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.nav-center-group {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-center-group .logo {
    margin-right: 15px;
}

.nav-center-group .nav-cta {
    margin-left: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    display: inline-block;
}

.nav-links a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.nav-cta {
    background: rgba(80, 120, 140, 0.8);
    color: #ffffff;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.nav-cta:hover {
    background: rgba(80, 120, 140, 1);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px;
    transition: all 0.3s ease;
}

.content-section {
    padding: 140px 50px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 50px;
}

/* Discord Support Hero */
.discord-support-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #5865F2;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
}

.discord-support-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.discord-icon-large {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.discord-support-hero h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.discord-support-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.discord-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865F2;
    color: #ffffff;
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-support-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.discord-support-btn svg {
    width: 24px;
    height: 24px;
}

/* Support Categories */
.categories-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.support-category {
    background: #1a1a1a;
    border: 2px solid #6b6b6b;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.support-category:hover {
    border-color: rgba(126, 211, 33, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.support-category h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.support-category p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.discord-channel {
    display: inline-block;
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    vertical-align: middle;
    margin: 0 3px;
}

/* Support Info Box */
.support-info-box {
    background: #1a1a1a;
    border: 2px solid #6b6b6b;
    border-radius: 16px;
    padding: 40px;
}

.support-info-box h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.support-info-box ol {
    margin-left: 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 2;
}

.support-info-box ol li {
    margin-bottom: 15px;
}

.support-info-box strong {
    color: #ffffff;
}

.channel-name {
    margin: 0 6px;
    display: inline-block;
}

.support-info-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0 0 0;
}

footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(126, 211, 33, 0.2);
    padding: 70px 50px 40px;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

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

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

.social-link {
    width: 44px;
    height: 44px;
    background: #2a2a2a;
    border: 1px solid rgba(126, 211, 33, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.social-link:hover {
    background: rgba(126, 211, 33, 0.15);
    border-color: rgba(126, 211, 33, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(126, 211, 33, 0.15);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-center-group .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .top-social-bar {
        justify-content: flex-start;
        padding: 10px 20px;
    }

    .content-section {
        padding: 100px 20px 60px;
    }

    .discord-support-hero {
        padding: 40px 25px;
    }

    .discord-support-hero h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .support-categories {
        grid-template-columns: 1fr;
    }

    .support-info-box {
        padding: 25px;
    }
}
