/* ==================== ROOT VARIABLES ==================== */

/* ===============================
   HARD FORCE CLICK FIX
   =============================== */

/* Force everything to allow clicks */
* {
    pointer-events: auto !important;
}

/* Disable pointer events on known visual layers */
canvas,
video,
iframe,
.bg-grid,
.bg-glow,
.background,
.overlay,
.blur,
.fx,
.effects,
.effects-layer,
.visual-layer,
.glow,
.glow-layer,
.particles,
.particle-layer,
.grid,
.grid-layer,
.backdrop,
.backdrop-filter,
.hero::before,
.hero::after,
.portfolio-item::before,
.pricing-card::before,
.status-card::before {
    pointer-events: none !important;
}

/* Force UI on top */
body * {
    position: relative;
    z-index: 10;
}

/* Navbar MUST be on top */
.navbar {
    z-index: 999999 !important;
}

/* Buttons MUST be clickable */
button,
a,
input,
textarea,
select,
.hero-btn,
.btn,
.nav-link,
.contact-method,
.pricing-card .btn,
.nav-discord-btn {
    pointer-events: auto !important;
    z-index: 999999 !important;
}

/* Hero content above ALL effects */
.hero-content {
    z-index: 999999 !important;
}

/* Discord card clickable */
.status-card,
.status-card-inner,
.status-content {
    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* Sections visible & clickable */
section {
    z-index: 100 !important;
}



:root {
    --primary: #00ff88;
    --primary-glow: rgba(0, 255, 136, 0.5);
    --secondary: #ff0080;
    --accent: #00d4ff;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --card-bg: rgba(15, 20, 35, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a0a8c0;
    --border: rgba(255, 255, 255, 0.1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== BACKGROUND EFFECTS ==================== */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.bg-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon svg {
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.brand-icon polygon {
    stroke: var(--primary);
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-discord-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #5865f2;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.nav-discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.nav-discord-btn svg {
    width: 20px;
    height: 20px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.designer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.designer-badge svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease backwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line.accent {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.quick-stat {
    text-align: center;
}

.stat-icon {
    margin-bottom: 1rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.quick-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--primary-glow);
}

.quick-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn.primary {
    background: var(--primary);
    color: var(--dark-bg);
    box-shadow: 0 5px 30px var(--primary-glow);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--primary-glow);
}

.hero-btn.secondary {
    background: #5865f2;
    color: white;
    box-shadow: 0 5px 30px rgba(88, 101, 242, 0.3);
}

.hero-btn.secondary:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(88, 101, 242, 0.5);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.floating-card.card-2 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ==================== BUTTON STYLES ==================== */
.btn {
    padding: 1rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 0 50px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==================== SECTIONS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    padding: 6rem 5%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }
.portfolio-item:nth-child(7) { animation-delay: 0.7s; }
.portfolio-item:nth-child(8) { animation-delay: 0.8s; }
.portfolio-item:nth-child(9) { animation-delay: 0.9s; }

.portfolio-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 136, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.overlay-content p {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.game-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-stats svg {
    width: 16px;
    height: 16px;
}

.game-stats span {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 0.95rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.game-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 6rem 5%;
    background: rgba(5, 8, 16, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.pricing-tier {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    color: var(--text-secondary);
    vertical-align: super;
}

.amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 6rem 5%;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.method-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.method-icon svg {
    width: 32px;
    height: 32px;
}

.method-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.method-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.discord-status-card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-card-inner {
    width: 100%;
    max-width: 400px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.status-loading {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 2rem 0;
}

.status-content {
    animation: fadeIn 0.5s ease;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.status-avatar-container {
    position: relative;
}

.status-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--border);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--card-bg);
    background: #747f8d;
}

.status-indicator.online {
    background: #43b581;
    box-shadow: 0 0 10px #43b581;
}

.status-indicator.idle {
    background: #faa61a;
    box-shadow: 0 0 10px #faa61a;
}

.status-indicator.dnd {
    background: #f04747;
    box-shadow: 0 0 10px #f04747;
}

.status-user-info {
    flex: 1;
}

.status-username {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.status-discriminator {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.status-activities {
    margin-bottom: 1.5rem;
}

.status-activity {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.status-activity:last-child {
    margin-bottom: 0;
}

.activity-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.activity-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.activity-state {
    margin-top: 0.25rem;
}

.status-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.status-footer svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.discord-lanyard {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discord-lanyard iframe {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-visual {
    flex: 1;
}

.visual-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 3rem 5%;
    background: var(--darker-bg);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-discord-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-discord-btn span {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .quick-stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .discord-status-card {
        width: 100%;
        margin-top: 2rem;
    }
    
    .status-card-inner {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 5rem 5% 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .floating-card.card-2,
    .floating-card.card-3 {
        display: none;
    }
}

.bg-grid,
.bg-glow {
    pointer-events: none;
}

.hero,
.hero-content,
.navbar,
.portfolio,
.pricing,
.contact {
    position: relative;
    z-index: 2;
}


/* ===============================
   CLICK FIX — INTERACTION PATCH
   =============================== */

/* Disable pointer blocking from background effects */
.bg-grid,
.bg-glow,
.background,
.background-overlay,
.fx-layer,
.glow-layer,
.particles,
canvas {
    pointer-events: none !important;
}

/* Ensure UI sits ABOVE effects */
body,
main,
.hero,
.hero-content,
.navbar,
.nav-links,
.portfolio,
.pricing,
.contact,
.footer,
.status-card,
.status-card-inner {
    position: relative;
    z-index: 5;
}

/* Ensure buttons & links are clickable */
button,
a,
.nav-link,
.hero-btn,
.btn,
.contact-method,
.pricing-card .btn,
.nav-discord-btn {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

/* Fix Discord status card layering */
.status-card,
.status-card-inner,
.status-content {
    z-index: 10;
    pointer-events: auto;
}

/* Prevent overlay pseudo-elements blocking clicks */
*::before,
*::after {
    pointer-events: none;
}

/* Fix navbar click layer */
.navbar {
    z-index: 1000 !important;
}

/* Ensure hero content is on top */
.hero-content {
    z-index: 20 !important;
}

/* Ensure cards remain interactive */
.portfolio-item,
.pricing-card,
.contact-method {
    z-index: 5;
}

/* Fix hover layers not blocking clicks */
.portfolio-item::before,
.pricing-card::before,
.hero::before {
    pointer-events: none;
}

/* Make sure sections don't block interaction */
section {
    position: relative;
    z-index: 2;
}


/* ===============================
   HARD FORCE CLICK FIX
   =============================== */

/* Force everything to allow clicks */
* {
    pointer-events: auto !important;
}

/* Disable pointer events on known visual layers */
canvas,
video,
iframe,
.bg-grid,
.bg-glow,
.background,
.overlay,
.blur,
.fx,
.effects,
.effects-layer,
.visual-layer,
.glow,
.glow-layer,
.particles,
.particle-layer,
.grid,
.grid-layer,
.backdrop,
.backdrop-filter,
.hero::before,
.hero::after,
.portfolio-item::before,
.pricing-card::before,
.status-card::before {
    pointer-events: none !important;
}

/* Force UI on top */
body * {
    position: relative;
    z-index: 10;
}

/* Navbar MUST be on top */
.navbar {
    z-index: 999999 !important;
}

/* Buttons MUST be clickable */
button,
a,
input,
textarea,
select,
.hero-btn,
.btn,
.nav-link,
.contact-method,
.pricing-card .btn,
.nav-discord-btn {
    pointer-events: auto !important;
    z-index: 999999 !important;
}

/* Hero content above ALL effects */
.hero-content {
    z-index: 999999 !important;
}

/* Discord card clickable */
.status-card,
.status-card-inner,
.status-content {
    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* Sections visible & clickable */
section {
    z-index: 100 !important;
}


/* ======================================
   FINAL GLOBAL CLICK + LAYER FIX
   ====================================== */

/* Force background effects to NEVER block clicks */
.bg-grid,
.bg-glow,
.hero-visual,
.floating-card,
.portfolio-overlay,
.hero::before,
.hero::after,
section::before,
section::after,
*::before,
*::after {
    pointer-events: none !important;
}

/* Make sure main UI is above effects */
.navbar,
.hero-content,
.hero-actions,
.portfolio,
.portfolio-item,
.pricing,
.pricing-card,
.contact,
.footer {
    position: relative;
    z-index: 10 !important;
}

/* Force buttons & links clickable */
button,
a,
.nav-link,
.hero-btn,
.btn,
.contact-method,
.nav-discord-btn {
    pointer-events: auto !important;
    z-index: 50 !important;
}

/* Hero visuals go behind content */
.hero-visual {
    z-index: 1 !important;
}

/* Hero content stays on top */
.hero-content {
    z-index: 20 !important;
}

/* Discord status card interactive */
.discord-status-card,
.status-card-inner,
.status-content {
    z-index: 30 !important;
    pointer-events: auto !important;
}

/* Navbar must stay above everything */
.navbar {
    z-index: 9999 !important;
}



* {
  pointer-events: auto !important;
}

.bg-grid,
.bg-glow,
.hero-visual,
.floating-card,
.overlay,
canvas,
video {
  pointer-events: none !important;
  z-index: -1 !important;
}


/* Make sure background layers don't block clicks */
.bg-grid,
.bg-glow,
.hero-visual {
    pointer-events: none; /* allow clicks to pass through */
}

/* Floating cards can still animate but not block clicks */
.floating-card {
    pointer-events: none;
}

/* Ensure nav and hero buttons are clickable */
.navbar,
.hero-content,
.hero-actions,
.pricing-card button,
.btn {
    position: relative;
    z-index: 10; /* higher than visual layers */
}
