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

:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 30, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-green: #00ff88;
    --accent-blue: #4a9eff;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
}

a, button, .nav-btn, .copy-btn, .copy-username-btn, .contact-link {
    cursor: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.2s ease;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cursor-dot.hover {
    transform: scale(0);
}

.cursor-ring.hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent-blue);
    background: rgba(74, 158, 255, 0.1);
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(74, 158, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: trailFade 0.6s ease-out forwards;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    width: 0%;
    z-index: 10001;
    transition: width 0.1s ease;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(74, 158, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 158, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

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

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #060610;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 32px;
    opacity: 0;
    animation: loadFadeIn 0.8s ease 0.2s forwards;
}

.loading-bar-container {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    animation: loadFadeIn 0.8s ease 0.4s forwards;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    border-radius: 3px;
    animation: loadProgress 1.8s ease 0.6s forwards;
}

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

@keyframes loadProgress {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

#starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-card {
    position: relative;
    overflow: hidden;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: var(--glow-y, 50%);
    left: var(--glow-x, 50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.glow-card:hover::before {
    opacity: 1;
}

.music-toggle {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(15, 18, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

.music-toggle.playing {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.music-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.music-bars span {
    display: block;
    width: 2.5px;
    background: currentColor;
    border-radius: 1px;
    height: 4px;
    transition: height 0.2s ease;
}

.music-toggle.playing .music-bars span:nth-child(1) {
    animation: musicBar 0.6s ease-in-out infinite alternate;
}
.music-toggle.playing .music-bars span:nth-child(2) {
    animation: musicBar 0.6s ease-in-out 0.15s infinite alternate;
}
.music-toggle.playing .music-bars span:nth-child(3) {
    animation: musicBar 0.6s ease-in-out 0.3s infinite alternate;
}
.music-toggle.playing .music-bars span:nth-child(4) {
    animation: musicBar 0.6s ease-in-out 0.1s infinite alternate;
}

@keyframes musicBar {
    0% { height: 4px; }
    100% { height: 14px; }
}

.hero-title .typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background: var(--accent-blue);
    margin-left: 4px;
    animation: blink 0.8s step-end infinite;
    vertical-align: baseline;
}

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

.theme-toggle {
    position: fixed;
    top: 80px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(15, 18, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    font-size: 18px;
}

.theme-toggle:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

body.light-theme {
    --bg-dark: #f5f5f7;
    --bg-card: rgba(255, 255, 255, 0.8);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .bg-overlay {
    background: radial-gradient(ellipse at 50% 50%, rgba(240, 242, 245, 1) 0%, rgba(230, 232, 238, 1) 100%);
}

body.light-theme .bg-orb--1 {
    background: rgba(74, 158, 255, 0.15);
}

body.light-theme .bg-orb--2 {
    background: rgba(100, 180, 255, 0.12);
}

body.light-theme .bg-orb--3 {
    background: rgba(50, 140, 255, 0.1);
}

body.light-theme .bg-orb--4 {
    background: rgba(120, 200, 255, 0.08);
}

body.light-theme .bg-orb--5 {
    background: rgba(80, 160, 255, 0.12);
}

body.light-theme .status-dot {
    background: #ff4444;
}

body.light-theme .cursor-dot {
    background: #1a1a1a;
}

body.light-theme .cursor-ring {
    border-color: rgba(0, 0, 0, 0.5);
}

.terminal-window {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 320px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.terminal-window.hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.terminal-header {
    background: rgba(20, 20, 30, 0.8);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.terminal-dot:nth-child(1) { background: #ff5f56; }
.terminal-dot:nth-child(2) { background: #ffbd2e; }
.terminal-dot:nth-child(3) { background: #27c93f; }

.terminal-body {
    padding: 12px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.6;
    color: #00ff88;
    height: 180px;
    overflow-y: auto;
}

.terminal-line {
    margin-bottom: 4px;
    opacity: 0;
    animation: terminalFadeIn 0.3s ease forwards;
}

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

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #00ff88;
    animation: blink 0.8s step-end infinite;
}

.terminal-toggle {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(15, 18, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    font-size: 16px;
}

.terminal-toggle:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.terminal-toggle.active {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.site-footer {
    text-align: center;
    padding: 20px 0 100px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(15, 18, 25, 1) 0%, rgba(8, 8, 14, 1) 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.bg-orb--1 {
    width: 600px;
    height: 600px;
    background: rgba(30, 60, 120, 0.35);
    top: -15%;
    left: -10%;
    animation: orbFloat1 18s ease-in-out infinite;
}

.bg-orb--2 {
    width: 500px;
    height: 500px;
    background: rgba(20, 40, 80, 0.3);
    top: 40%;
    right: -15%;
    animation: orbFloat2 22s ease-in-out infinite;
}

.bg-orb--3 {
    width: 700px;
    height: 700px;
    background: rgba(10, 30, 60, 0.25);
    bottom: -20%;
    left: 30%;
    animation: orbFloat3 25s ease-in-out infinite;
}

.bg-orb--4 {
    width: 300px;
    height: 300px;
    background: rgba(40, 80, 140, 0.2);
    top: 20%;
    left: 50%;
    animation: orbFloat4 15s ease-in-out infinite;
}

.bg-orb--5 {
    width: 400px;
    height: 400px;
    background: rgba(15, 35, 70, 0.3);
    top: 60%;
    left: 10%;
    animation: orbFloat5 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 40px) scale(1.15); }
    66% { transform: translate(-40px, 80px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-70px, -50px) scale(1.1); }
    66% { transform: translate(50px, -80px) scale(0.95); }
}

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

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, 60px) scale(1.2); }
}

@keyframes orbFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(70px, -40px) scale(1.15); }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.logo {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.bottom-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    z-index: 100;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-btn.active {
    background: rgba(74, 158, 255, 0.2);
    color: var(--accent-blue);
}

.content {
    position: relative;
    z-index: 1;
    padding-top: 70px;
    min-height: 100vh;
}

.page {
    display: none;
    padding: 60px 40px 140px;
    max-width: 900px;
    margin: 0 auto;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.page.active {
    display: block;
}

.page.blur-out {
    filter: blur(10px);
    opacity: 0.3;
}

.page.active .stagger {
    opacity: 0;
    transform: translateY(30px);
    animation: staggerIn 0.6s ease forwards;
}

.page.active .stagger:nth-child(1) { animation-delay: 0.05s; }
.page.active .stagger:nth-child(2) { animation-delay: 0.15s; }
.page.active .stagger:nth-child(3) { animation-delay: 0.25s; }
.page.active .stagger:nth-child(4) { animation-delay: 0.35s; }
.page.active .stagger:nth-child(5) { animation-delay: 0.45s; }
.page.active .stagger:nth-child(6) { animation-delay: 0.55s; }

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    text-align: center;
    padding: 80px 0 40px;
}

.hero-title {
    font-size: 96px;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #6b7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.hero-subtitle .highlight {
    color: var(--accent-green);
    font-weight: 700;
}

.info-cards {
    display: inline-grid;
    grid-template-columns: repeat(3, auto);
    gap: 16px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(15, 18, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 36px;
    text-align: center;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    transform-style: preserve-3d;
}

.card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.card-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-flip-hint {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    letter-spacing: 1px;
}

.card-flip-hint {
    display: none;
}

.discord-card {
    background: rgba(15, 18, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    transform-style: preserve-3d;
}

.discord-card .copy-btn {
    margin-left: auto;
}

.discord-icon {
    color: #5865f2;
}

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

.discord-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.discord-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
}

.online-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-green);
}

.copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-container {
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.skills-grid {
    display: grid;
    gap: 24px;
}

.skill-bar {
    display: grid;
    gap: 12px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.skill-percent {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.skill-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    border-radius: 3px;
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
    animation: skillPulse 2s ease-in-out infinite;
}

@keyframes skillPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(74, 158, 255, 0.4); }
    50% { box-shadow: 0 0 30px rgba(74, 158, 255, 0.7); }
}

.projects-container {
    max-width: 800px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.1s ease, border-color 0.3s ease, box-shadow 0.1s ease;
    transform-style: preserve-3d;
}

.project-card:hover {
    border-color: var(--accent-blue);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img,
.project-image video,
.project-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img,
.project-card:hover .project-image video {
    transform: scale(1.05);
}

.project-info {
    padding: 24px;
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: rgba(74, 158, 255, 0.1);
    color: var(--accent-blue);
    border-radius: 6px;
}


.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    transform-style: preserve-3d;
}

.contact-icon {
    color: #5865f2;
    margin-bottom: 24px;
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.contact-username {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.copy-username-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-username-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    transform: translateX(4px);
}

.contact-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 56px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

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

    .discord-card .copy-btn {
        margin-left: 0;
    }

    .page {
        padding: 40px 20px 140px;
    }

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

    .bottom-nav {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }

    .contact-username {
        font-size: 24px;
    }
}
