/* ==========================================
   MAD SOFTWARE - Custom stylesheet
   ========================================== */

/* Fonts & Globals */
:root {
    --bg-dark: #06070b;
    --bg-card: rgba(13, 16, 26, 0.7);
    --bg-nav: rgba(6, 7, 11, 0.8);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(226, 26, 56, 0.3);
    
    /* Neon & Primary Colors */
    --accent: #e21a38;
    --accent-glow: rgba(226, 26, 56, 0.5);
    --accent-secondary: #ff4b5c;
    --accent-secondary-glow: rgba(255, 75, 92, 0.4);
    
    /* Status Colors */
    --color-ud: #10b981;
    --color-ud-glow: rgba(16, 185, 129, 0.5);
    --color-upd: #f59e0b;
    --color-upd-glow: rgba(245, 158, 11, 0.5);
    --color-det: #ef4444;
    --color-det-glow: rgba(239, 68, 68, 0.5);
    
    /* Discord Color */
    --discord-color: #5865f2;
    --discord-hover: #4752c4;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: #e2e8f0;
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1a1e2d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.gradient-text {
    background: linear-gradient(135deg, #ff4b5c 0%, #e21a38 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Ambient Glow Blobs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    left: -150px;
    animation: floatGlow 12s infinite alternate ease-in-out;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, rgba(0,0,0,0) 70%);
    top: 30%;
    right: -200px;
    animation: floatGlow 18s infinite alternate-reverse ease-in-out;
}

.glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
    bottom: 50px;
    left: -100px;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #b91c1c 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(226, 26, 56, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(226, 26, 56, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-color);
}

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

.btn-discord {
    background-color: var(--discord-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background-color: var(--discord-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.discord-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(6, 7, 11, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94a3b8;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 26, 56, 0.1);
    border: 1px solid rgba(226, 26, 56, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fda4af;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Dashboard Widget */
.hero-dashboard {
    perspective: 1000px;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.dashboard-card:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
    border-color: var(--border-hover);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.db-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.db-pulse {
    width: 10px;
    height: 10px;
    background-color: var(--color-ud);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-ud);
    animation: pulse 1.5s infinite;
}

.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.db-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #cbd5e1;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.ud {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-ud);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.upd {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-upd);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.status-badge.ud .status-dot {
    background-color: var(--color-ud);
    box-shadow: 0 0 6px var(--color-ud);
}

.status-badge.upd .status-dot {
    background-color: var(--color-upd);
    box-shadow: 0 0 6px var(--color-upd);
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
}

.dashboard-link {
    color: var(--accent-secondary);
    font-weight: 600;
}

.dashboard-link:hover {
    color: #ffffff;
}

/* Section Common Styles */
section[class$="-section"] {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: #94a3b8;
    font-size: 1.05rem;
}

/* Durumlar Section */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.status-card.glow-card-green::before {
    background: var(--color-ud);
}

.status-card.glow-card-orange::before {
    background: var(--color-upd);
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.status-card.glow-card-green:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.status-card.glow-card-orange:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.status-card-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.badge-game {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.badge-game.valorant {
    background: rgba(255, 70, 85, 0.1);
    color: #ff4655;
    border: 1px solid rgba(255, 70, 85, 0.2);
}

.badge-game.cs2 {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.badge-game.apex {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-game.universal {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.info-label {
    color: #64748b;
}

.info-val {
    color: #cbd5e1;
    font-weight: 500;
}

.status-indicator-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.status-indicator.ud-bg {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-ud);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-indicator.upd-bg {
    background: rgba(245, 158, 11, 0.08);
    color: var(--color-upd);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* Pulsating Ring Animations */
.pulse-ring, .pulse-ring-orange {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.pulse-ring {
    background-color: var(--color-ud);
    box-shadow: 0 0 6px var(--color-ud);
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-ud);
    border-radius: 50%;
    animation: ringPulse 1.5s infinite;
    opacity: 0;
}

.pulse-ring-orange {
    background-color: var(--color-upd);
    box-shadow: 0 0 6px var(--color-upd);
}

.pulse-ring-orange::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--color-upd);
    border-radius: 50%;
    animation: ringPulse 1.5s infinite;
    opacity: 0;
}

@keyframes ringPulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Products Section */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 30px;
    color: #94a3b8;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(226, 26, 56, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-glow-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(130deg, rgba(226, 26, 56, 0.05) 0%, rgba(0,0,0,0) 60%);
    z-index: 0;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(226, 26, 56, 0.1);
}

.prod-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(226, 26, 56, 0.5);
    text-transform: uppercase;
    z-index: 10;
}

.prod-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.prod-image-container:hover .prod-img {
    transform: scale(1.05);
}

/* Dual image hover switch */
.prod-image-container.dual-image .img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.prod-image-container.dual-image:hover .img-primary {
    opacity: 0;
}

.prod-image-container.dual-image:hover .img-secondary {
    opacity: 1;
    transform: scale(1.05);
}

/* Indicators */
.image-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 20px;
    pointer-events: none;
    transition: var(--transition);
}

.ind-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: var(--transition);
}

.ind-dot.active {
    background: #ffffff;
    width: 12px;
    border-radius: 10px;
}

.prod-image-container.dual-image:hover .image-indicator .ind-dot:first-child {
    background: rgba(255, 255, 255, 0.4);
    width: 6px;
}

.prod-image-container.dual-image:hover .image-indicator .ind-dot:last-child {
    background: #ffffff;
    width: 12px;
    border-radius: 10px;
}

.product-header {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.prod-tag {
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.prod-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.prod-desc {
    color: #94a3b8;
    font-size: 0.95rem;
}

.prod-features {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    flex-grow: 1;
}

.prod-features h4 {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.prod-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prod-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.feat-icon {
    width: 18px;
    height: 18px;
    color: var(--color-ud);
    flex-shrink: 0;
    margin-top: 2px;
}

.prod-pricing {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-bottom: 25px;
}

.price-options {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-tab {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.price-tab.active {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
}

.price-period {
    color: #64748b;
    font-size: 0.95rem;
}

.btn-purchase {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Why Us (Ozellikler) Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.05);
}

.feat-icon-container {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feat-icon-container svg {
    width: 24px;
    height: 24px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080911 100%);
}

.cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content {
    background: radial-gradient(circle at top right, rgba(226, 26, 56, 0.12), rgba(255, 75, 92, 0.03)), var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-content h2 {
    font-size: 2.2rem;
    max-width: 600px;
    line-height: 1.2;
}

.cta-content p {
    color: #94a3b8;
    max-width: 500px;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #030407;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-desc {
    color: #64748b;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h4, .footer-legal h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-legal p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
}

/* Floating Discord Button */
.floating-discord {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--discord-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4), 0 0 0 0 rgba(88, 101, 242, 0.7);
    z-index: 99;
    cursor: pointer;
    transition: var(--transition);
    animation: floatBobbing 3s infinite ease-in-out;
}

.floating-discord svg {
    width: 28px;
    height: 28px;
}

.floating-discord:hover {
    transform: scale(1.1);
    background-color: #4e5dcd;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.6);
}

.floating-discord .tooltip {
    position: absolute;
    right: 75px;
    background-color: #111827;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.floating-discord:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes floatBobbing {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-dashboard {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .dashboard-card {
        transform: none;
    }
    
    .dashboard-card:hover {
        transform: translateY(-5px);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: #08090e;
        flex-direction: column;
        padding: 40px;
        gap: 25px;
        transition: var(--transition);
        backdrop-filter: blur(20px);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Toggle active class icon change */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .btn-nav {
        display: none; /* Hide nav discord on mobile to keep navbar clean */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        grid-column: span 1;
    }
}
