/* Admin Panel: /adminpannel.html - Credentials in HTML comments */
/* Backup admin: admin / Admin123! */

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

:root {
    --primary: #0a0a15;
    --secondary: #1a1a2e;
    --accent: #8b5cf6;
    --accent-hover: #7c3aed;
    --text: #ffffff;
    --text-muted: #a0a8c0;
    --neural-glow: rgba(139, 92, 246, 0.3);
    --podium-gold: #e5e7eb;
    --podium-silver: #d1d5db;
    --podium-bronze: #9ca3af;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    padding-bottom: 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

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

.language-selector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    opacity: 1;
}

.language-content {
    text-align: center;
    z-index: 10001;
}

.language-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #6366f1, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.language-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.lang-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.lang-btn:hover::before {
    left: 0;
}

.lang-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.volume-control {
    position: fixed;
    bottom: 80px;
    right: 2rem;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.volume-icon {
    font-size: 1.5rem;
    color: var(--accent);
    min-width: 1.5rem;
}

.volume-slider {
    width: 150px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: var(--accent-hover);
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
    background: var(--accent-hover);
    transform: scale(1.2);
}

.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

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

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 2px;
}

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

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.hero-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6366f1, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section,
.skills-section,
.education-section {
    padding: 5rem 2rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent);
}

.section-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 400;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.podium-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 200px;
    min-width: 150px;
}

.podium-item.first {
    order: 2;
}

.podium-item.second {
    order: 1;
}

.podium-item.third {
    order: 3;
}

.podium-rank {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.podium-item.first .podium-rank {
    color: var(--podium-gold);
    text-shadow: 0 0 20px rgba(229, 231, 235, 0.3);
}

.podium-item.second .podium-rank {
    color: var(--podium-silver);
    text-shadow: 0 0 20px rgba(209, 213, 219, 0.3);
}

.podium-item.third .podium-rank {
    color: var(--podium-bronze);
    text-shadow: 0 0 20px rgba(156, 163, 175, 0.3);
}

.podium-card {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--accent);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.podium-item.first .podium-card {
    border-color: var(--podium-gold);
    box-shadow: 0 10px 30px rgba(229, 231, 235, 0.2);
    transform: scale(1.1);
}

.podium-item.second .podium-card {
    border-color: var(--podium-silver);
    box-shadow: 0 5px 20px rgba(209, 213, 219, 0.15);
}

.podium-item.third .podium-card {
    border-color: var(--podium-bronze);
    box-shadow: 0 5px 20px rgba(156, 163, 175, 0.15);
}

.podium-card:hover {
    transform: translateY(-5px);
}

.podium-item.first .podium-card:hover {
    transform: scale(1.15) translateY(-5px);
}

.podium-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.podium-item.first .podium-card h3 {
    color: var(--podium-gold);
}

.podium-item.second .podium-card h3 {
    color: var(--podium-silver);
}

.podium-item.third .podium-card h3 {
    color: var(--podium-bronze);
}

.podium-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.other-skills {
    margin-top: 4rem;
    text-align: center;
}

.other-skills-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.skill-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }
.skill-card:nth-child(4) { animation-delay: 0.4s; }
.skill-card:nth-child(5) { animation-delay: 0.5s; }
.skill-card:nth-child(6) { animation-delay: 0.6s; }

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.skill-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    background: rgba(26, 26, 46, 0.8);
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.skill-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    transition: all 0.4s ease;
}

.skill-card:hover .skill-icon {
    transform: rotate(5deg) scale(1.1);
}

.skill-card:hover .skill-icon svg {
    color: var(--accent-hover);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.skill-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
    max-width: 100%;
    text-align: center;
}

.skill-card:hover .skill-name {
    color: var(--accent);
    transform: scale(1.05);
}

.skill-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.skill-card:hover .skill-glow {
    width: 300px;
    height: 300px;
    animation: pulseGlow 2s ease infinite;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.education-page-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.blog-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-intro {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    transition: all 0.4s ease;
}

.blog-intro:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.blog-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
    text-align: justify;
}

.blog-text:last-child {
    margin-bottom: 0;
}

.scrolling-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent);
    padding: 0.8rem 0;
    z-index: 1500;
    overflow: hidden;
    white-space: nowrap;
}

.banner-content {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: scrollBanner 30s linear infinite;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.8rem, 2.2vw, 1rem);
    font-weight: 600;
    color: var(--text);
    padding-right: 4rem;
    will-change: transform;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.scrolling-banner:hover .banner-content {
    animation-play-state: paused;
}

.discord-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.discord-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.discord-popup {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    width: 280px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid var(--accent);
    border-left: none;
    border-radius: 0 20px 20px 0;
    padding: 1.5rem;
    padding-left: 1.8rem;
    z-index: 1500;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    animation: floatPopup 3s ease-in-out infinite;
    transform-origin: left center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.discord-popup.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: all;
}

.discord-popup-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 28px;
    height: 28px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.discord-popup-close:hover {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.discord-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.discord-popup-icon {
    width: 50px;
    height: 50px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.discord-popup-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.discord-popup-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.discord-popup-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.discord-popup-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.discord-popup-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

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

.admin-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.admin-login-box {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
}

.admin-login-box:hover {
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
}

.admin-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.admin-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.admin-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-input-group label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-input {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--text);
    outline: none;
    transition: all 0.3s ease;
}

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

.admin-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    background: rgba(10, 14, 39, 0.95);
}

.admin-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -0.5rem;
}

.admin-remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.admin-remember label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.admin-submit-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-submit-btn:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.admin-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.admin-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.admin-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.admin-forgot {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-forgot:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.admin-message {
    margin-top: 1.5rem;
    padding: 1rem;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.admin-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.admin-dashboard {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

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

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.dashboard-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dashboard-logout {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-logout:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: var(--accent);
}

.stat-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.dashboard-table {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.dashboard-table h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table thead {
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.dashboard-table th {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-table td {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.dashboard-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.1);
}

.education-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
}

.education-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.education-item:nth-child(2) {
    animation-delay: 0.2s;
}

.education-item:nth-child(odd) {
    flex-direction: row;
}

.education-item:nth-child(even) {
    flex-direction: row-reverse;
}

.education-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.education-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.education-item:hover .education-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.education-item:hover .education-icon svg {
    color: var(--primary);
    transform: scale(1.1);
}

.education-content {
    flex: 1;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.education-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.education-item:hover .education-content::before {
    left: 100%;
}

.education-item:hover .education-content {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.education-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease infinite;
}

.education-badge.completed {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #10b981;
    animation: none;
}

.education-degree {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.education-level {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.education-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.education-progress {
    width: 100%;
    height: 6px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.education-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 10px;
    animation: progressFill 2s ease forwards;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
}

@keyframes progressFill {
    to {
        width: 65%;
    }
}

.contact-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #6366f1, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-reasons {
    margin-bottom: 4rem;
}

.reasons-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.reasons-list {
    list-style: none;
}

.reasons-list li {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-muted);
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.reasons-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
}

.contact-email {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2.5rem;
    border-radius: 10px;
}

.email-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.email-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text);
    border-radius: 5px;
    outline: none;
}

.email-input:focus {
    border-color: var(--accent);
}

.copy-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.copy-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.copy-feedback {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    text-align: center;
    min-height: 1.5rem;
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .education-timeline::before {
        left: 40px;
    }

    .education-item {
        flex-direction: row !important;
        gap: 2rem;
    }

    .education-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .education-icon svg {
        width: 35px;
        height: 35px;
    }

    .education-content {
        padding: 2rem;
    }

    .discord-popup {
        left: 0;
        width: 220px;
        padding: 1.2rem;
        padding-left: 1.5rem;
    }

    .discord-popup-icon {
        width: 45px;
        height: 45px;
    }

    .discord-popup-title {
        font-size: 1.1rem;
    }

    .discord-popup-text {
        font-size: 0.85rem;
    }

    .banner-content {
        font-size: clamp(0.75rem, 2vw, 0.95rem);
    }

    .scrolling-banner {
        padding: 0.7rem 0;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .hero-section {
        padding: 6rem 1rem 3rem;
    }

    .about-section,
    .skills-section,
    .education-section {
        padding: 3rem 1rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .skill-card {
        padding: 2rem 1.5rem;
    }

    .skill-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .skill-name {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .skill-card {
        min-height: 180px;
        padding: 2rem 1rem;
    }

    .podium-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .podium-item {
        max-width: 100%;
        min-width: 200px;
    }

    .podium-item.first {
        order: 1;
    }

    .podium-item.second {
        order: 2;
    }

    .podium-item.third {
        order: 3;
    }

    .podium-item.first .podium-card {
        transform: scale(1);
    }

    .podium-rank {
        font-size: 3rem;
    }

    .contact-section,
    .education-page-section,
    .blog-section,
    .admin-section {
        padding: 6rem 1rem 3rem;
    }

    .admin-login-box {
        padding: 2rem;
    }

    .admin-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .blog-intro {
        padding: 2rem;
    }

    .blog-text {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .email-container {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }

    .language-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .lang-btn {
        width: 80%;
        max-width: 300px;
    }

    .language-title {
        margin-bottom: 2.5rem;
    }
}

@media screen and (max-width: 430px), screen and (max-width: 932px) and (orientation: portrait) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .hero-section {
        padding: 5rem 1rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 300px;
    }

    .about-section,
    .skills-section,
    .education-section {
        padding: 2.5rem 1rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .skill-card {
        padding: 1.5rem 1rem;
    }

    .skill-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .skill-name {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .skill-card {
        min-height: 160px;
        padding: 1.5rem 0.8rem;
    }

    .skill-icon {
        margin-bottom: 0.6rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .skill-card {
        padding: 1.5rem;
    }

    .skill-card h3 {
        font-size: 1.3rem;
    }

    .skill-card p {
        font-size: 1rem;
    }

    .contact-section,
    .blog-section,
    .admin-section {
        padding: 5rem 1rem 2rem;
    }

    .admin-login-box {
        padding: 1.5rem;
    }

    .admin-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .admin-input {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }

    .admin-submit-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .blog-intro {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .blog-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .scrolling-banner {
        padding: 0.8rem 0;
    }

    .banner-content {
        font-size: 0.8rem;
        gap: 0.8rem;
        padding: 0 1rem;
    }

    body {
        padding-bottom: 50px;
    }

    .volume-control {
        bottom: 70px;
        right: 0.5rem;
        padding: 0.6rem 0.8rem;
        z-index: 2000;
    }

    .volume-slider {
        width: 80px;
    }

    .discord-popup {
        left: 0;
        width: 200px;
        padding: 1rem;
        padding-left: 1.3rem;
        transform: translateY(-50%) translateX(-100%);
    }

    .discord-popup.show {
        transform: translateY(-50%) translateX(0);
    }

    .discord-popup-icon {
        width: 40px;
        height: 40px;
    }

    .discord-popup-title {
        font-size: 1rem;
    }

    .discord-popup-text {
        font-size: 0.75rem;
    }

    .discord-popup-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .discord-popup-close {
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .reasons-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .reasons-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
        padding-left: 1.5rem;
    }

    .contact-email {
        padding: 1.5rem;
    }

    .email-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .email-input {
        font-size: 1rem;
        padding: 0.9rem;
    }

    .copy-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .language-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .lang-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
    }

    .volume-control {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .volume-slider {
        width: 100px;
        transform: rotate(-90deg);
    }

    .volume-icon {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .education-timeline::before {
        left: 40px;
    }

    .education-item {
        flex-direction: row !important;
        gap: 2rem;
    }

    .education-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .education-icon svg {
        width: 30px;
        height: 30px;
    }

    .education-content {
        padding: 1.5rem;
    }

    .education-degree {
        font-size: 1.3rem;
    }

    .education-level {
        font-size: 1rem;
    }

    .education-description {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1024px) {
    .nav-container {
        padding: 0 3rem;
    }

    .hero-section {
        padding: 10rem 3rem 5rem;
    }

    .about-section,
    .skills-section,
    .education-section {
        padding: 6rem 3rem;
    }

    .discord-popup {
        left: 0;
        width: 300px;
        padding-left: 2rem;
    }

    .volume-control {
        bottom: 85px;
    }
}

@media screen and (min-width: 1440px) {
    .discord-popup {
        left: 0;
        width: 320px;
        padding: 2rem;
        padding-left: 2.2rem;
    }

    .discord-popup-icon {
        width: 60px;
        height: 60px;
    }

    .discord-popup-title {
        font-size: 1.5rem;
    }

    .discord-popup-text {
        font-size: 1.1rem;
    }

    .volume-control {
        bottom: 90px;
    }
}

@media screen and (max-width: 360px) {
    .discord-popup {
        left: 0;
        width: 180px;
        padding: 0.8rem;
        padding-left: 1rem;
        transform: translateY(-50%) translateX(-100%);
    }

    .discord-popup.show {
        transform: translateY(-50%) translateX(0);
    }

    .discord-popup-icon {
        width: 35px;
        height: 35px;
    }

    .discord-popup-title {
        font-size: 0.9rem;
    }

    .discord-popup-text {
        font-size: 0.7rem;
    }

    .discord-popup-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .discord-popup-close {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }

    .banner-content {
        font-size: 0.7rem;
        gap: 0.5rem;
    }

    .scrolling-banner {
        padding: 0.6rem 0;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .discord-popup {
        left: 0;
        width: 250px;
        padding-left: 1.5rem;
    }

    .volume-control {
        bottom: 75px;
    }

    .banner-content {
        font-size: clamp(0.8rem, 2.3vw, 1rem);
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .discord-popup {
        left: 0;
        width: 270px;
        padding-left: 1.7rem;
    }

    .volume-control {
        bottom: 80px;
    }

    .banner-content {
        font-size: clamp(0.85rem, 2.4vw, 1.05rem);
    }
}

@media screen and (min-width: 1920px) {
    .discord-popup {
        left: 0;
        width: 350px;
        padding: 2.5rem;
        padding-left: 2.7rem;
    }

    .discord-popup-icon {
        width: 70px;
        height: 70px;
    }

    .discord-popup-title {
        font-size: 1.8rem;
    }

    .discord-popup-text {
        font-size: 1.2rem;
    }

    .discord-popup-btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }

    .volume-control {
        bottom: 95px;
    }

    .banner-content {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
    }

    .scrolling-banner {
        padding: 1rem 0;
    }
}

@media screen and (orientation: landscape) and (max-height: 600px) {
    .discord-popup {
        top: auto;
        bottom: 80px;
        left: 0;
        transform: translateY(0) translateX(-100%);
    }

    .discord-popup.show {
        transform: translateY(0) translateX(0);
    }

    .volume-control {
        bottom: 80px;
        right: 1rem;
    }

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

