@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #0D0F12;
    --bg-navbar: rgba(22, 27, 34, 0.85);
    --text-main: #F0F6FC;
    --text-muted: #8B949E;
    --accent: #F2994A;
    --accent-glow: rgba(242, 153, 74, 0.15);
    --border-color: rgba(242, 153, 74, 0.2);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    cursor: url("../images/cursor-_11_.png"), pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-main);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(242, 153, 74, 0.1),
        transparent 80%
    );
    pointer-events: none;
    z-index: -1;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-navbar);
    backdrop-filter: blur(12px);
    padding: 0 40px;
    height: 75px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    overflow: visible !important;
}

.logo-container, 
.navbar-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.navbar-right {
    justify-content: flex-end;
}

.navbar ul {
    flex: 2;
    display: flex;
    list-style: none;
    flex-direction: row;
    padding: 0;
    margin: 0;
    gap: 8px;
    justify-content: center;
}

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

.navbar-logo img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid var(--accent);
    padding: 4px;
    background: var(--accent-glow);
    transition: all 0.3s ease;
}

.navbar-logo h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.navbar-logo span {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.logo-container {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container:hover {
    transform: translateY(-1px);
}

.logo-container:hover img {
    background: rgba(242, 153, 74, 0.25);
    box-shadow: 0 0 20px rgba(242, 153, 74, 0.3);
    filter: saturate(1.2) brightness(1.1);
}

.logo-container:hover h2 {
    color: var(--accent);
}

.navbar ul li a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar ul li a:hover, 
.navbar ul li a.active {
    color: var(--accent);
    background: var(--accent-glow);
}

.nav-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--accent);
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-icon-cta {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.navbar-cta:hover {
    background-color: var(--accent);
    color: var(--bg-main);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(242, 153, 74, 0.4);
}

.navbar-cta:hover .nav-icon-cta {
    transform: scale(1.1);
}

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

.navbar-cta:hover::after {
    left: 100%;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropbtn {
    cursor: pointer;
}

.arrow-svg {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn.active .arrow-svg {
    transform: rotate(180deg);
}

.filter-btn.active, 
.nav-dropdown:hover .dropbtn {
    color: var(--accent);
    background: var(--accent-glow);
}

.filter-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #161B22;
    min-width: 200px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    z-index: 1000;
    margin-top: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    padding: 8px 0;
}

.filter-content.show {
    display: block;
}

.filter-content a {
    color: var(--text-muted);
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.filter-content a:hover {
    background: var(--accent-glow);
    color: var(--accent);
    padding-left: 25px;
}

/* ------------------ */

.grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(242, 153, 74, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 153, 74, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

.contact-main {
    min-height: 100vh;
    padding: 80px 40px 0;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 80px 20px;
    position: relative;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 153, 74, 0.15), transparent);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 0;
}

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

.contact-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFF 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

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

.contact-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 1;
    border-left: 2px solid var(--border-color);
    padding-left: 20px;
}

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

/* ------------------ */

.contact-methods {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    position: relative;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(242, 153, 74, 0.05) 100%);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 153, 74, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.contact-card:hover {
    border-color: rgba(242, 153, 74, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(242, 153, 74, 0.1) 100%);
    transform: translateY(-8px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(242, 153, 74, 0.05) 100%);
    pointer-events: none;
    border-radius: 16px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-icon svg {
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.discord-icon {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.1));
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.discord-icon:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.2));
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.email-icon {
    background: linear-gradient(135deg, rgba(242, 153, 74, 0.2), rgba(242, 153, 74, 0.1));
    color: var(--accent);
    border: 1px solid var(--border-color);
}

.email-icon:hover {
    background: linear-gradient(135deg, rgba(242, 153, 74, 0.3), rgba(242, 153, 74, 0.2));
    box-shadow: 0 0 20px rgba(242, 153, 74, 0.4);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.contact-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 24px 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-details {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 153, 74, 0.15);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-info {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid var(--border-color);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-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: 0.5s;
}

.contact-btn:hover {
    background: var(--accent);
    color: var(--bg-main);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 153, 74, 0.4);
}

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

.contact-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.contact-btn:hover svg {
    transform: translateX(2px);
}

.contact-btn:active {
    transform: translateY(-1px);
}

#copy-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--accent);
    color: var(--bg-main);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(242, 153, 74, 0.4);
}

#copy-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 30px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-methods {
        padding: 0 20px 60px;
    }
}

/* ------------------ */

.main-footer {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0 40px 0;
    margin-top: 100px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

.footer-logo img {
    width: 35px;
    height: 35px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 2px;
}

.footer-logo span {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-left p {
    font-size: 13px;
    color: #666;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.nav-group h4 {
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.nav-group a {
    display: block;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.nav-group a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
    text-align: center;
}

.footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 25px;
}

.footer-bottom p {
    color: #444;
    font-size: 12px;
    letter-spacing: 0.5px;
}