:root {
    --bg: #000;
    --card: #071016;
    --muted: #9fb3b6;
    --accent-a: #00ffd4;
    --accent-b: #18ff6f;
    --glass: rgba(255, 255, 255, 0.03);
    --radius: 14px;
    --maxw: 1100px;
    --gap: 1rem;
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.container {
    width: 90%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 400;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass);
    left: 0;
    right: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    max-width: 100%;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 0.75rem;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'JetBrains Mono', monospace;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu span {
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    border-radius: 2px;
}


/* Page Hero */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
    width: 100%;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 10px;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    word-wrap: break-word;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    backdrop-filter: blur(20px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        transparent 100%
    );
}

#particle-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    gap: 0.5rem;
    max-width: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    color: var(--bg);
    box-shadow: 0 4px 15px rgba(0, 255, 212, 0.3);
}

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

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-a);
    color: var(--accent-a);
}

.btn-secondary:hover {
    background: rgba(0, 255, 212, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Contact Methods */
.contact-methods {
    padding: 6rem 0;
    width: 100%;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--glass);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 212, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 212, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--bg);
    font-size: 2rem;
}

.contact-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-header p {
    color: var(--muted);
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid var(--glass);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(0, 255, 212, 0.2);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent-a);
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--accent-a);
}

/* Developer Profiles */
.developer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid var(--glass);
    transition: all 0.3s ease;
}

.developer-profile:hover {
    border-color: rgba(0, 255, 212, 0.2);
    transform: translateX(5px);
}

.developer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.developer-info {
    flex-grow: 1;
}

.developer-info h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.developer-info p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.developer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass);
}

.social-link:hover {
    color: var(--accent-a);
    border-color: var(--accent-a);
    transform: translateY(-2px);
}

/* Social Platforms */
.social-platforms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid var(--glass);
    transition: all 0.3s ease;
}

.platform-item:hover {
    border-color: rgba(0, 255, 212, 0.2);
    transform: translateX(5px);
}

.platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.platform-icon.twitter {
    background: #1DA1F2;
}

.platform-icon.discord {
    background: #5865F2;
}

.platform-icon.linkedin {
    background: #0077B5;
}

.platform-info {
    flex-grow: 1;
}

.platform-info h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.platform-info p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.platform-link {
    color: var(--accent-a);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-link:hover {
    color: var(--accent-b);
}

/* Quick Message */
.quick-message {
    padding: 6rem 0;
    background: var(--card);
    width: 100%;
    overflow: hidden;
}

.message-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.message-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.message-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.message-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.section-header h2 {
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--glass);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(0, 255, 212, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    flex-grow: 1;
}

.faq-question i {
    color: var(--accent-a);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    background: var(--card);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass);
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-brand p {
    color: var(--muted);
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
}

.footer-column a:hover {
    color: var(--accent-a);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass);
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    width: 100%;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--card);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: flex;
        z-index: 1001;
    }
.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 9px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

      .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .developer-profile {
        padding: 1rem;
    }

    .developer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .platform-item {
        padding: 1rem;
    }

    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .message-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .message-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .page-hero {
        padding-top: 100px;
    }

    .contact-methods,
    .quick-message,
    .faq-section {
        padding: 4rem 0;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 0.75rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        width: 30px;
    }

    .developer-profile {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .developer-socials {
        justify-content: center;
    }

    .platform-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .page-hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

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

    .contact-card {
        padding: 1rem;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }
}