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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #00ff41;
    background-color: #0a0e0f;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 65, 0.05) 25%, rgba(0, 255, 65, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 65, 0.05) 75%, rgba(0, 255, 65, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 255, 65, 0.05) 25%, rgba(0, 255, 65, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 65, 0.05) 75%, rgba(0, 255, 65, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #8affb0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg, .geometric-lion-logo, .matrix-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-svg:hover, .geometric-lion-logo:hover, .matrix-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #00ff41);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
}

.nav-logo a:hover {
    color: #007bff;
}

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

.nav-link {
    color: #00ff41;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.nav-link:hover {
    color: #00cc33;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8), 0 0 20px rgba(0, 255, 65, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff41;
    box-shadow: 0 0 5px #00ff41;
    transition: width 0.3s ease;
}

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

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid #00ff41;
    color: #00ff41;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.lang-btn:hover {
    border-color: #00ff41;
    color: #0a0e0f;
    background: #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.lang-btn.active {
    background: #00ff41;
    border-color: #00ff41;
    color: #0a0e0f;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ff41;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px #00ff41;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #0a0e0f 0%, #1a1f20 100%);
    position: relative;
    border-bottom: 2px solid #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8affb0;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #00ff41;
    color: #0a0e0f;
    border: 2px solid #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    text-shadow: none;
}

.btn-primary:hover {
    background: transparent;
    color: #00ff41;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.btn-secondary {
    background: transparent;
    color: #00ff41;
    border: 2px solid #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.btn-secondary:hover {
    background: #00ff41;
    color: #0a0e0f;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
    text-shadow: none;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #003311, #001a0a);
    border-radius: 0;
    border: 2px solid #00ff41;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff41;
    font-size: 4rem;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4), inset 0 0 30px rgba(0, 255, 65, 0.1);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.6), inset 0 0 40px rgba(0, 255, 65, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #00ff41;
    border-bottom: 2px solid #00ff41;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
    font-family: 'Courier New', monospace;
    position: relative;
}

.section-title::before {
    content: '> ';
    color: #00ff41;
    opacity: 0.7;
}

.section-title::after {
    content: ' _';
    animation: blink 1s infinite;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #8affb0;
    font-family: 'Courier New', monospace;
}

/* About Section */
.about {
    background: #0f1516;
    border-bottom: 1px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    margin-bottom: 1rem;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.skills h3::before {
    content: '// ';
    color: #00ff41;
    opacity: 0.6;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: transparent;
    color: #00ff41;
    padding: 0.5rem 1rem;
    border-radius: 0;
    border: 1px solid #00ff41;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.skill-tag:hover {
    background: #00ff41;
    color: #0a0e0f;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image .image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #003311, #001a0a);
    font-size: 3rem;
    border: 2px solid #00ff41;
}

/* Work Section */
.work {
    background: #0a0e0f;
    border-bottom: 1px solid #00ff41;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #00ff41;
    color: #00ff41;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.filter-btn:hover {
    background: #00ff41;
    color: #0a0e0f;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.filter-btn.active {
    background: #00ff41;
    color: #0a0e0f;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.work-item.hidden {
    display: none;
}

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

.work-item {
    background: #0f1516;
    border-radius: 0;
    border: 1px solid #00ff41;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    border-color: #00ff41;
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-preview {
    width: 90%;
    height: 80%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.browser-header {
    background: #0a0e0f;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #00ff41;
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.browser-dots span:nth-child(1) { background: #ff5f57; box-shadow: 0 0 5px #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; box-shadow: 0 0 5px #ffbd2e; }
.browser-dots span:nth-child(3) { background: #00ff41; box-shadow: 0 0 5px #00ff41; }

.browser-url {
    font-size: 10px;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.project-content {
    padding: 16px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.project-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.project-stats {
    font-size: 12px;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 12px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.feature-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 500;
}

/* Project-specific styling */
.creatorofweb .project-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.creatorofweb .project-title {
    color: white;
}

.creatorofweb .project-stats {
    color: #ffd700;
}

.creatorofweb .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.howtomakefreewebsite .project-preview {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.howtomakefreewebsite .project-title {
    color: white;
}

.howtomakefreewebsite .project-stats {
    color: #ffd700;
}

.howtomakefreewebsite .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.howtomakefree .project-preview {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.howtomakefree .project-title {
    color: white;
}

.howtomakefree .project-stats {
    color: #ffd700;
}

.howtomakefree .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.eweb .project-preview {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.eweb .project-title {
    color: white;
}

.eweb .project-stats {
    color: #ffd700;
}

.eweb .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.creatorsofcode .project-preview {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.creatorsofcode .project-title {
    color: white;
}

.creatorsofcode .project-stats {
    color: #ffd700;
}

.creatorsofcode .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.multiusercardgames .project-preview {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
    color: white;
}

.multiusercardgames .project-title {
    color: white;
}

.multiusercardgames .project-stats {
    color: #ffd700;
}

.multiusercardgames .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.hiinakas .project-preview {
    background: linear-gradient(135deg, #c92a2a 0%, #e67700 100%);
    color: white;
}

.hiinakas .project-title {
    color: white;
}

.hiinakas .project-stats {
    color: #ffd43b;
}

.hiinakas .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.vahetaasju .project-preview {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.vahetaasju .project-title {
    color: white;
}

.vahetaasju .project-stats {
    color: #ffd700;
}

.vahetaasju .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tiger-logo .project-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mobile-repair .project-preview {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.mobile-repair .project-title {
    color: white;
}

.mobile-repair .project-stats {
    color: #ffd700;
}

.mobile-repair .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.coming-soon .project-preview {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: white;
}

.coming-soon .project-title {
    color: white;
}

.coming-soon .project-stats {
    color: #fff;
    font-weight: bold;
}

.coming-soon .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
}

.logo-showcase .logo-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 15, 0.95);
    color: #00ff41;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 2rem;
    border: 2px solid #00ff41;
    box-shadow: inset 0 0 30px rgba(0, 255, 65, 0.2);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
    font-family: 'Courier New', monospace;
}

.work-overlay p {
    margin-bottom: 1rem;
    color: #8affb0;
}

.work-link {
    color: #00ff41;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid #00ff41;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.work-link:hover {
    background: #00ff41;
    color: #0a0e0f;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.9);
}

/* Contact Section */
.contact {
    background: #0f1516;
    border-bottom: 1px solid #00ff41;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #00ff41;
    width: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #00ff41;
    font-family: 'Courier New', monospace;
}

.contact-item p {
    margin: 0;
    color: #8affb0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ff41;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #00ff41;
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    background: rgba(0, 255, 65, 0.05);
    color: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff41' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #0a0e0f;
    color: #00ff41;
    padding: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #00ff41;
    opacity: 0.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    background: rgba(0, 255, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0a0e0f;
    color: #00ff41;
    padding: 2rem 0;
    border-top: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #00ff41;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.social-link:hover {
    color: #00cc33;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.9);
    transform: scale(1.2);
}

.footer-text {
    margin: 0;
    color: #8affb0;
    font-family: 'Courier New', monospace;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 14, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 255, 65, 0.3);
        padding: 2rem 0;
        border-bottom: 2px solid #00ff41;
    }

    .nav-menu.active {
        left: 0;
    }

    .language-switcher {
        margin-left: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    .about-image .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2rem;
    }

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

    .logo-svg, .geometric-lion-logo, .matrix-logo {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .skill-tags {
        justify-content: center;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .work-image {
        height: 200px;
    }

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

    .logo-svg, .geometric-lion-logo, .matrix-logo {
        width: 25px;
        height: 25px;
    }
}
