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

:root {
    --primary-blue: #00d4ff;
    --secondary-blue: #0099cc;
    --dark-blue: #001a33;
    --darker-blue: #000d1a;
    --accent-cyan: #00ffff;
    --text-primary: #ffffff;
    --text-secondary: #b0c4de;
    --gradient-start: #000000;
    --gradient-mid: #001a33;
    --gradient-end: #003366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(135deg, #000000 0%, #0a1628 25%, #001a33 50%, #0a2540 75%, #003366 100%);
}

.cube {
    position: absolute;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
    animation: float 20s infinite;
}

.cube:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
}

.cube:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 30%;
    animation-delay: 2s;
}

.cube:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 50%;
    animation-delay: 4s;
}

.cube:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 70%;
    animation-delay: 6s;
}

.cube:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 85%;
    animation-delay: 8s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-blue));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--primary-blue)); }
    50% { filter: drop-shadow(0 0 20px var(--accent-cyan)); }
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-blue);
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-content {
    text-align: center;
    max-width: 600px;
}

/* Glitch Effect */
.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    position: relative;
    text-shadow: 0 0 20px var(--primary-blue);
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: var(--primary-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: #ff00ff;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 20px var(--primary-blue); }
    50% { text-shadow: 0 0 40px var(--primary-blue), 0 0 60px var(--accent-cyan); }
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 30% 0); transform: translate(-3px, 0); }
    20% { clip-path: inset(50% 0 20% 0); transform: translate(3px, 0); }
    40% { clip-path: inset(10% 0 60% 0); transform: translate(-3px, 0); }
    60% { clip-path: inset(40% 0 30% 0); transform: translate(3px, 0); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(-3px, 0); }
    100% { clip-path: inset(5% 0 80% 0); transform: translate(3px, 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(60% 0 10% 0); transform: translate(3px, 0); }
    20% { clip-path: inset(20% 0 50% 0); transform: translate(-3px, 0); }
    40% { clip-path: inset(70% 0 10% 0); transform: translate(3px, 0); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-3px, 0); }
    80% { clip-path: inset(30% 0 40% 0); transform: translate(3px, 0); }
    100% { clip-path: inset(50% 0 30% 0); transform: translate(-3px, 0); }
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2rem;
    letter-spacing: 2px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    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-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--gradient-start);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

/* Terminal */
.terminal {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    overflow: hidden;
    min-width: 400px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.terminal-header {
    background: rgba(30, 30, 30, 0.9);
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.prompt {
    color: var(--primary-blue);
    font-weight: bold;
}

.typing {
    color: #00ff00;
    animation: typing 3s steps(30) infinite;
}

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

.output {
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.output:nth-child(2) { animation-delay: 0.5s; }
.output:nth-child(3) { animation-delay: 1s; }
.output:nth-child(4) { animation-delay: 1.5s; }

.output.success {
    color: #00ff00;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--primary-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

/* Worship Marco Section */
.worship {
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.worship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,215,0,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.worship-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
}

.marco-shrine {
    position: relative;
    width: 300px;
    height: 300px;
}

.shrine-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: shrineGlow 3s ease-in-out infinite;
    border-radius: 50%;
}

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

.marco-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffd700;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 90px rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 1;
    animation: marcoFloat 4s ease-in-out infinite;
}

@keyframes marcoFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.worship-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    animation: raysRotate 20s linear infinite;
    border-radius: 50%;
}

@keyframes raysRotate {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.worship-info {
    text-align: center;
    max-width: 400px;
}

.worship-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
}

.worship-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.worship-counter {
    margin-bottom: 2rem;
}

.worship-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    display: block;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
    50% { text-shadow: 0 0 50px rgba(255, 215, 0, 0.9), 0 0 80px rgba(255, 215, 0, 0.4); }
}

.worship-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.btn-worship {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: worshipBtnGlow 2s ease-in-out infinite;
}

@keyframes worshipBtnGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.7); }
}

.btn-worship:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.8);
}

.btn-worship.worshipped {
    animation: worshipClick 0.3s ease;
}

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

.worship-icon {
    font-size: 1.5rem;
}

.worship-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.7;
    font-style: italic;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatUp 2s ease-out forwards;
    pointer-events: none;
    z-index: 10;
}

@keyframes floatUp {
    0% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-200px) scale(1.5) rotate(20deg); 
    }
}

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

.about-card {
    background: rgba(0, 26, 51, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: 0 0 30px var(--primary-blue);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    display: block;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(0, 26, 51, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-blue), transparent 30%);
    opacity: 0;
    animation: none;
    transition: opacity 0.3s;
}

.team-member:hover::before {
    opacity: 0.1;
    animation: rotate 4s linear infinite;
}

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

.team-member:hover {
    transform: translateY(-15px);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

/* Leader special styling */
.team-member.leader {
    background: linear-gradient(135deg, rgba(0, 26, 51, 0.8), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.4);
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.team-member.leader:hover {
    border-color: #ffd700;
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.2);
}

.member-crown {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    animation: crownFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes crownFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-5deg); }
    50% { transform: translateX(-50%) translateY(-10px) rotate(5deg); }
}

.member-photo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.team-member.leader .member-photo-container {
    width: 180px;
    height: 180px;
    border-color: #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.1);
}

/* Photo effects */
.photo-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.3) 50%, transparent 60%);
    opacity: 0;
    animation: glitchSweep 3s infinite;
}

@keyframes glitchSweep {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.photo-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.03) 2px,
        rgba(0, 212, 255, 0.03) 4px
    );
    pointer-events: none;
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

.photo-hologram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: hologramScan 2s ease-in-out infinite;
}

@keyframes hologramScan {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}

.photo-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(0, 255, 0, 0.05) 50%);
    background-size: 4px 4px;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

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

.member-skills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary-blue);
    color: var(--gradient-start);
    box-shadow: 0 0 15px var(--primary-blue);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

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

.team-member h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-member.leader h3 {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.team-member p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    background: rgba(0, 26, 51, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form button {
    align-self: center;
    margin-top: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .terminal {
        min-width: 100%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gradient-start);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: var(--gradient-start);
}

/* Matrix Rain Canvas */
#matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

/* Particle cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-blue), transparent);
    pointer-events: none;
    z-index: 9999;
    animation: cursorFade 0.5s ease-out forwards;
}

@keyframes cursorFade {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Typing cursor blink */
.typing::after {
    content: '|';
    animation: blink 1s step-end infinite;
}

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

/* Secret Easter egg - Konami code activated state */
body.hacked {
    animation: hackedScreen 0.1s infinite;
}

@keyframes hackedScreen {
    0% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(90deg); }
    50% { filter: hue-rotate(180deg); }
    75% { filter: hue-rotate(270deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Cool hover effect for all interactive elements */
a, button {
    position: relative;
}

/* Neon text effect utility */
.neon-text {
    text-shadow: 
        0 0 5px var(--primary-blue),
        0 0 10px var(--primary-blue),
        0 0 20px var(--primary-blue),
        0 0 40px var(--primary-blue);
}

/* MARCO MODE Button in Nav */
.marco-mode-btn {
    background: linear-gradient(135deg, #ff6b00, #ff0066);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: marcoBtnPulse 2s infinite;
}

@keyframes marcoBtnPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 102, 0.8), 0 0 60px rgba(255, 107, 0, 0.5); }
}

.marco-mode-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 102, 1);
}

.marco-mode-btn.active {
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff);
    animation: marcoActive 0.3s infinite;
}

@keyframes marcoActive {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* MARCO MODE - Full Page Effects */
body.marco-mode {
    animation: marcoRainbow 0.5s infinite !important;
}

@keyframes marcoRainbow {
    0% { filter: hue-rotate(0deg) saturate(1.5); }
    25% { filter: hue-rotate(90deg) saturate(1.5); }
    50% { filter: hue-rotate(180deg) saturate(1.5); }
    75% { filter: hue-rotate(270deg) saturate(1.5); }
    100% { filter: hue-rotate(360deg) saturate(1.5); }
}

.floating-marco {
    position: fixed;
    top: -50px;
    animation: marcoFall linear forwards;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes marcoFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Matrix Mode */
body.matrix-mode {
    animation: matrixFlicker 0.1s infinite;
}

@keyframes matrixFlicker {
    0%, 100% { filter: brightness(1) sepia(0.3) hue-rotate(70deg); }
    50% { filter: brightness(1.2) sepia(0.3) hue-rotate(70deg); }
}

/* Hacking Terminal Section */
.hacking {
    background: radial-gradient(ellipse at center, rgba(0, 255, 0, 0.03) 0%, transparent 70%);
}

.hacking-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hacking-terminal {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    border: 1px solid #00ff00;
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.3),
        inset 0 0 50px rgba(0, 255, 0, 0.05);
    overflow: hidden;
}

.hacking-terminal .terminal-header {
    background: rgba(20, 20, 20, 0.95);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.terminal-title {
    margin-left: auto;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.terminal-output {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #00ff00;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.6;
}

.terminal-output::-webkit-scrollbar {
    width: 6px;
}

.terminal-output::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 3px;
}

.terminal-welcome {
    color: #00ff00;
    opacity: 0.7;
}

.terminal-command {
    color: #00ff00;
    margin-top: 0.5rem;
}

.terminal-response {
    color: #00cc00;
    white-space: pre-wrap;
    margin-left: 1rem;
    padding: 0.5rem 0;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    background: rgba(0, 20, 0, 0.5);
}

.terminal-prompt {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    margin-right: 0.5rem;
    white-space: nowrap;
}

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

.terminal-input::placeholder {
    color: rgba(0, 255, 0, 0.3);
}

.hacking-hints {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
