/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --menu-size: 64px;
    --menu-border-radius: 20px;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    padding: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjustment */
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Allow text selection for input fields and textareas */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* No JavaScript Warning */
.noscript-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.noscript-content {
    max-width: 700px;
    text-align: center;
    background: rgba(15, 23, 42, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
}

.noscript-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.noscript-title {
    font-family: 'Audiowide', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.noscript-message {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.noscript-note {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.noscript-steps {
    text-align: left;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.noscript-steps p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.noscript-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.noscript-steps li {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.noscript-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.noscript-steps strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .noscript-content {
        padding: 2rem 1.5rem;
    }
    
    .noscript-icon {
        font-size: 3rem;
    }
    
    .noscript-steps {
        padding: 1rem;
    }
    
    .noscript-steps li {
        font-size: 0.85rem;
    }
}

/* Section Wrapper - Full width, no side padding */
.section-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Floating Menu - Lower Left Corner */
.floating-menu {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.menu-toggle {
    width: var(--menu-size);
    height: var(--menu-size);
    border-radius: var(--menu-border-radius);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1002;
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.4);
    border-color: var(--primary-color);
}

.menu-toggle.active {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.menu-icon {
    font-size: 1.75rem;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.menu-toggle.active .menu-icon {
    transform: rotate(90deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.floating-menu.active .menu-overlay {
    opacity: 1;
    visibility: visible;
}

.menu-items {
    position: absolute;
    bottom: calc(var(--menu-size) + 1rem);
    left: 0;
    list-style: none;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--menu-border-radius);
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.floating-menu.active .menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.menu-link:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(5px);
}

.menu-link.active {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.2);
}

.menu-link-icon {
    font-size: 1.5rem;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-link-text {
    font-size: 1rem;
}

/* Main Content - Full width, sidebar overlays */
body {
    margin-left: 0;
    width: 100%;
}

/* Hero Section - Full Screen Edge-to-Edge */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg-darker);
    overflow: hidden;
    z-index: -1;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    background: var(--primary-color);
}

.particle:nth-child(2) {
    left: 80%;
    top: 30%;
    animation-delay: -2s;
    background: var(--secondary-color);
    width: 6px;
    height: 6px;
}

.particle:nth-child(3) {
    left: 30%;
    top: 70%;
    animation-delay: -4s;
    background: var(--accent-color);
}

.particle:nth-child(4) {
    left: 70%;
    top: 60%;
    animation-delay: -6s;
    background: var(--primary-color);
    width: 3px;
    height: 3px;
}

.particle:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: -8s;
    background: var(--secondary-color);
}

.particle:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: -10s;
    background: var(--accent-color);
    width: 5px;
    height: 5px;
}

.particle:nth-child(7) {
    left: 90%;
    top: 50%;
    animation-delay: -12s;
    background: var(--primary-color);
}

.particle:nth-child(8) {
    left: 5%;
    top: 50%;
    animation-delay: -14s;
    background: var(--secondary-color);
    width: 4px;
    height: 4px;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeRotate 30s linear infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 15%;
    right: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    bottom: 25%;
    left: 8%;
    animation-duration: 35s;
    animation-direction: reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-color);
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

.hero-content {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
    z-index: 1;
    position: relative;
    max-width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding: 0 4rem;
    width: 100%;
    max-width: 100%;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
    animation: fadeInUp 0.8s ease 0.6s both;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    border: 3px solid rgba(99, 102, 241, 0.3);
    background: transparent;
    transition: all 0.3s ease;
    display: block;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.3));
}

.hero-image:hover {
    transform: translateY(-5px) scale(1.05) rotate(5deg);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.6);
    border-color: var(--primary-color);
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.5));
}


.hero-badge-top {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease 0.2s both;
    text-align: left;
}

.badge-text-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.badge-text-top i {
    animation: sparkle 2s ease-in-out infinite;
}

.hero-title-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Audiowide', cursive;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.hero-title-line {
    display: inline-block;
    animation: fadeInUp 0.8s ease 0.3s both;
    position: relative;
    z-index: 2;
}

.hero-title .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 3s ease-in-out infinite;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    justify-content: flex-start;
}

.decoration-line {
    height: 2px;
    background: var(--gradient-1);
    width: 120px;
    opacity: 0.5;
    animation: lineExpand 1s ease 0.5s both;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: dotPulse 2s ease-in-out infinite;
}

.text-accent {
    color: var(--text-primary);
    font-weight: 300;
    opacity: 0.8;
}

.hero-subtitle-wrapper {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}

.subtitle-highlight {
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-subtitle .subtitle-highlight:last-of-type {
    text-align: right;
    margin-right: 1rem;
}

.subtitle-highlight:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.subtitle-divider {
    color: var(--text-muted);
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.5s both;
    text-align: left;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.hero-stat:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-countdown {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.5s both;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 60px;
}

.countdown-value {
    font-family: 'Audiowide', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-align: center;
    min-width: 2ch;
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.countdown-separator {
    font-family: 'Audiowide', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-color);
    opacity: 0.5;
    line-height: 1;
    margin-top: -0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-primary);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.hero-badge {
    margin-top: 0;
    text-align: right;
    width: 100%;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.badge-text i {
    animation: calendarPulse 2s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Sections - Full Width Edge-to-Edge */
section {
    width: 100%;
    max-width: 100vw;
    padding: 8rem 0;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
}

/* Content containers within sections - centered with max-width for readability */
.about-content,
.projects-grid,
.contact-grid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section-title,
.section-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.section-title {
    font-family: 'Audiowide', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 4rem;
}

/* About Section */
.about {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.about-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.about-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.about-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -12s;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.about-left {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.about-right {
    padding: 0 4rem 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-badge {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.about-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.about-badge-text i {
    /* No animation - intentionally empty */
    display: inline-block;
}

.about-title {
    font-family: 'Audiowide', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.3s both;
    letter-spacing: 0.02em;
}

.about-title-text {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-title-accent {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    white-space: nowrap;
}

.about-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.about-text p {
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-cta {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-cta:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.about-feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.5s both;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
}

.about-feature-card:nth-of-type(2) {
    animation-delay: 0.6s;
}

.about-feature-card:nth-of-type(3) {
    animation-delay: 0.7s;
}

.about-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.schedule-header {
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.schedule-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-header-right {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}

.week-of {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.week-of span {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.schedule-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
}

.schedule-day-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    min-width: 0;
    min-height: 100px;
    gap: 0.5rem;
}

.schedule-day-card:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.day-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.day-time {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.day-activity {
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

.fun-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fun-facts-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.fun-facts-list li:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
    transform: translateX(5px);
}

.fun-facts-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.setup-header {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.setup-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.setup-title i {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Specs Container (now part of About) */
.specs-container {
    animation: fadeInUp 0.8s ease 0.6s both;
    max-width: 100%;
    min-width: 0;
}

.specs-content {
    position: relative;
    min-height: auto;
    width: fit-content;
}

.specs-category {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
}

.specs-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.specs-category:hover::before {
    transform: scaleY(1);
}

.specs-category:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.specs-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.specs-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specs-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-right: 0.5rem;
}

.specs-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: fit-content;
    max-width: 100%;
}

.specs-list.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.specs-list li {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: fit-content;
    max-width: 100%;
    flex: 0 1 auto;
}

.specs-list li:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
}

.spec-item-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.specs-list strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.spec-item-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.specs-list li:hover .spec-item-content span {
    color: var(--text-primary);
}

.specs-toggle {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toggle-btn:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.toggle-btn i {
    font-size: 1rem;
}

/* Support Section (now part of Contact) */
.contact-support {
    margin-top: 4rem;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.support-title {
    font-family: 'Audiowide', cursive;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.support-title i {
    color: var(--accent-color);
    font-size: 1.75rem;
}

.support-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.support-feature:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.support-icon {
    font-size: 1.5rem;
    display: inline-block;
    color: var(--primary-color);
}

.support-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.support-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.support-buttons .btn i {
    font-size: 1.1rem;
}

.support-note {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 3rem 0;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.floating-menu.footer-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.footer-logo-wrapper:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: blink 1.5s infinite;
}

.footer-logo-wrapper:hover::after {
    opacity: 1;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-name {
    font-family: 'Audiowide', cursive;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: right;
}

.footer-links {
    margin-top: 0.75rem;
    text-align: right;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


.footer-credits {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.credits-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.credits-header i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.credits-header strong {
    color: var(--text-primary);
    font-weight: 600;
}

.credits-name {
    transition: color 0.3s ease;
}

.credits-header:hover .credits-name {
    color: var(--primary-color);
}

.credits-hover-card {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 0.25rem;
    padding-top: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.footer-credits.active .credits-hover-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.credits-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 140px;
}

.credits-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credits-link:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(4px);
}

.credits-link i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.bluesky-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.credits-link span {
    white-space: nowrap;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Terminal Container */
.terminal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: calc(100vw - 4rem);
    height: 400px;
    max-height: calc(100vh - 4rem);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.terminal-container.active ~ * .terminal-trigger {
    opacity: 1;
}

.terminal-container.active {
    display: flex;
}

.terminal-header {
    background: rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: move;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.terminal-btn-close:hover {
    background: #ef4444;
}

.terminal-btn-minimize:hover {
    background: #f59e0b;
}

.terminal-btn-maximize:hover {
    background: #10b981;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.terminal-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    color: #00ff00;
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3);
}

.terminal-line {
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.terminal-prompt {
    color: #6366f1;
    margin-right: 0.5rem;
}

.terminal-cursor {
    animation: blink 1s infinite;
    color: #00ff00;
}

.terminal-input-wrapper {
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.8);
}

.terminal-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    outline: none;
}

.terminal-input::placeholder {
    color: rgba(99, 102, 241, 0.5);
}

/* Terminal Scrollbar */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

.support-note i {
    color: var(--accent-color);
    margin-left: 0.25rem;
}

/* Projects Section */
.projects {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.projects-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 30s ease-in-out infinite;
}

.projects-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.projects-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -15s;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0;
    position: relative;
    z-index: 1;
}

.project-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.project-card:hover::before {
    transform: scaleY(1);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    background: rgba(15, 23, 42, 0.8);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-icon i {
    display: inline-block;
}

.project-title {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.project-status {
    margin-top: auto;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-coming-soon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.projects-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.contact-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 35s ease-in-out infinite;
}

.contact-orb-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.contact-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -18s;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    background: rgba(15, 23, 42, 0.8);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-icon i {
    display: inline-block;
}

.contact-title {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes calendarPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 0.5;
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--primary-color);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 20px var(--primary-color);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 2rem;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-right {
        align-items: center;
    }
    
    .hero-image-wrapper {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-badge {
        text-align: center;
    }
    
    .title-decoration {
        justify-content: center;
    }
    
    .hero-subtitle {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-wrapper {
        padding: 0 2rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-left {
        text-align: center;
    }
    
    .about-right {
        padding: 0;
        align-items: center;
    }
    
    .about-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-cta {
        display: block;
        text-align: center;
    }
    
    .setup-title {
        justify-content: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .schedule-week {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .schedule-day-card {
        padding: 0.5rem 0.25rem;
    }
    
    .day-name {
        font-size: 0.75rem;
    }
    
    .day-time {
        font-size: 0.7rem;
    }
    
    .projects-grid,
    .contact-grid,
    .section-title,
    .section-subtitle,
    .projects-note {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-credits {
        align-items: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .terminal-container {
        width: calc(100vw - 2rem);
        max-width: 600px;
        height: calc(100vh - 2rem);
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --menu-size: 56px;
        --menu-border-radius: 16px;
    }
    
    .floating-menu {
        bottom: 1rem;
        left: 1rem;
    }
    
    .menu-items {
        min-width: 180px;
        bottom: calc(var(--menu-size) + 1rem);
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .section-wrapper {
        padding: 0 1.5rem;
    }
    
    .hero-layout {
        gap: 2rem;
        padding: 0 1.5rem;
        min-height: auto;
    }
    
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    
    .subtitle-highlight {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
    }
    
    .subtitle-highlight:last-of-type {
        margin-right: 0;
    }
    
    .countdown-timer {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-value {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .countdown-unit {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: clamp(1rem, 4vw, 1.75rem);
        margin-top: -0.25rem;
    }
    
    .hero-image-wrapper {
        max-width: 200px;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-left {
        padding: 0;
        text-align: center;
    }
    
    .about-right {
        padding: 0;
        align-items: center;
    }
    
    .about-feature-card {
        width: 100%;
        max-width: 100%;
        margin-top: 1rem;
    }
    
    .feature-tags {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .feature-tag {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .hero-stat {
        padding: 1.25rem 1.5rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    .subtitle-divider {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .projects-grid,
    .contact-grid,
    .section-title,
    .section-subtitle,
    .projects-note {
        padding: 0 1rem;
    }
    
    .btn {
        min-height: 44px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card,
    .contact-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-brand-text {
        align-items: center;
    }
    
    .footer-credits {
        align-items: center;
        width: 100%;
    }
    
    .credits-hover-card {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .footer-copyright {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-links {
        text-align: center;
        margin-top: 0.75rem;
    }
    
    .terminal-container {
        width: calc(100vw - 1rem);
        height: calc(100vh - 1rem);
        max-height: 80vh;
        border-radius: 0.5rem;
    }
    
    .terminal-header {
        padding: 0.75rem 1rem;
    }
    
    .terminal-body {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .terminal-input {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .contact-card {
        min-height: 44px;
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .about-content,
    .projects-grid,
    .contact-grid,
    .section-title,
    .section-subtitle,
    .projects-note {
        padding: 0 1rem;
    }
    
    .hero-layout {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .section-wrapper {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.25rem);
        gap: 0.5rem;
    }
    
    .subtitle-highlight {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .countdown-timer {
        gap: 0.25rem;
    }
    
    .countdown-item {
        min-width: 45px;
    }
    
    .countdown-value {
        font-size: clamp(1.25rem, 7vw, 2rem);
    }
    
    .countdown-unit {
        font-size: 0.6rem;
    }
    
    .countdown-separator {
        font-size: clamp(0.875rem, 5vw, 1.5rem);
        margin-top: -0.25rem;
    }
    
    .hero-image-wrapper {
        max-width: 180px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .about-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .about-text {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        line-height: 1.7;
    }
    
    .about-feature-card {
        padding: 1.25rem;
    }
    
    .feature-header {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .feature-header i {
        font-size: 1.25rem;
    }
    
    .feature-tag {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .support-buttons {
        flex-direction: column;
    }
    
    .support-buttons .btn {
        width: 100%;
    }
    
    .support-features {
        flex-direction: column;
    }
    
    .credits-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .credits-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .footer-content {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }
    
    .footer-logo-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .footer-name {
        font-size: 1.1rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .credits-title {
        font-size: 0.95rem;
    }
    
    .credits-hover-card {
        width: calc(100vw - 2rem);
        max-width: 280px;
        padding: 1rem;
    }
    
    .terminal-container {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .terminal-header {
        padding: 0.625rem 0.875rem;
    }
    
    .terminal-title {
        font-size: 0.85rem;
    }
    
    .terminal-body {
        padding: 0.625rem;
        font-size: 0.8rem;
    }
    
    .terminal-input {
        font-size: 0.85rem;
        padding: 0.625rem;
    }
    
    .project-card,
    .contact-card {
        padding: 1.25rem;
    }
    
    .project-icon,
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .project-title,
    .contact-title {
        font-size: 1.25rem;
    }
    
    .project-description,
    .contact-description {
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .floating-menu {
        bottom: 0.75rem;
        left: 0.75rem;
    }
    
    .menu-items {
        bottom: calc(var(--menu-size) + 0.75rem);
    }
    
    .menu-link {
        min-height: 44px;
        padding: 0.75rem 1rem;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-link-icon {
        font-size: 1.25rem;
    }
    
    .menu-link-text {
        font-size: 0.95rem;
    }
    
    /* Prevent horizontal scroll on mobile */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve touch targets */
    a, button, .btn, .contact-card, .project-card, .menu-toggle, .floating-menu {
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
        touch-action: manipulation;
    }
    
    /* Ensure containers don't overflow */
    .hero-layout, .about-layout, .projects-grid, .contact-grid, .section-wrapper {
        max-width: 100vw;
        overflow-x: hidden;
    }
}
