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

/* Advanced Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff4500 0%, #ff6b35 50%, #ff4500 100%);
    border-radius: 10px;
    box-shadow: 
        0 0 10px rgba(255, 69, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    animation: scrollbarGlow 3s ease-in-out infinite;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6b35 0%, #ffaa00 50%, #ff6b35 100%);
    box-shadow: 
        0 0 15px rgba(255, 69, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    animation: none;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #ff4500 0%, #cc3300 50%, #ff4500 100%);
    box-shadow: 
        0 0 20px rgba(255, 69, 0, 1),
        inset 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: none;
}

/* Animated scrollbar glow effect */
@keyframes scrollbarGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(255, 69, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(255, 69, 0, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    }
}

::-webkit-scrollbar-corner {
    background: #1a0000;
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #ff4500 #1a0000;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Background Canvas */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #000000 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-text {
    text-shadow: 0 0 25px rgba(255, 69, 0, 1);
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

.logo-icon {
    font-size: 2.5rem;
    animation: fireGlow 2s ease-in-out infinite alternate;
}

.logo-text {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

.logo-animation {
    color: #ff4500;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 10px;
    animation: anjmsGlow 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-anjms {
    font-size: 0.7em;
    color: #ffaa00;
    animation: anjmsFloat 3s ease-in-out infinite;
    display: inline-block;
    margin-left: 10px;
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.8);
}

.startup-anjms {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 15px;
    animation: anjmsPulse 1.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-island {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: auto;
    overflow: hidden;
}

.nav-island:hover {
    background: rgba(26, 0, 0, 0.9);
    border-color: rgba(255, 69, 0, 0.4);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 69, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    padding: 10px 25px;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 6px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
    white-space: nowrap;
    overflow: hidden;
}

.nav-link i {
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.nav-text {
    opacity: 0;
    max-width: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 0;
}

.nav-island:hover .nav-link {
    gap: 8px;
}

.nav-island:hover .nav-text {
    opacity: 1;
    max-width: 100px;
    margin-left: 8px;
}

.nav-link:hover {
    color: #ff4500;
    background: rgba(255, 69, 0, 0.15);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
    transform: scale(1.05);
}

.nav-link:hover i {
    color: #ff4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}

.discord-link {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    border-radius: 25px;
    padding: 8px 10px;
    margin-left: 8px;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.discord-link:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ffaa00 100%);
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.6);
    transform: scale(1.1) !important;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: #ff4500;
    border: 2px solid #ff4500;
}

.btn-secondary:hover {
    background: #ff4500;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: rgba(255, 69, 0, 0.05);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(26, 0, 0, 0.8);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 69, 0, 0.6);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: fireGlow 2s ease-in-out infinite alternate;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features .feature {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(26, 0, 0, 0.8);
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(255, 69, 0, 0.8);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.period {
    font-size: 1.2rem;
    color: #cccccc;
    margin-left: 5px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features .feature {
    padding: 8px 0;
    color: #ffffff;
    font-size: 1rem;
}

.pricing-features .feature.disabled {
    color: #666666;
    opacity: 0.6;
}

.pricing-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.free-btn {
    background: transparent;
    color: #ff4500;
    border: 2px solid #ff4500;
}

.free-btn:hover {
    background: #ff4500;
    color: #ffffff;
}

.premium-btn {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.6);
}

.vip-btn {
    background: linear-gradient(135deg, #ffaa00 0%, #ff6b35 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
}

.vip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 170, 0, 0.6);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 69, 0, 0.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(26, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.about-feature i {
    font-size: 2.5rem;
    color: #ff4500;
    margin-bottom: 10px;
}

.about-feature span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Credits Section */
.credits {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.credits-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.credits-names {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.credit-name {
    background: rgba(26, 0, 0, 0.8);
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.credit-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.credit-name:hover::before {
    left: 100%;
}

.credit-name:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 69, 0, 0.8);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
}

.name-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: fireGlow 2s ease-in-out infinite alternate;
}

.credit-name h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
    letter-spacing: 2px;
}

.credits-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 69, 0, 0.3);
}

.credits-footer p {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 10px;
    font-weight: 600;
}

.credits-year {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-stats {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00ff88;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-thumbnail.adventure {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.project-thumbnail.simulator {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

.project-thumbnail.racing {
    background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%);
}

.project-thumbnail.survival {
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
}

.project-thumbnail.roleplay {
    background: linear-gradient(135deg, #ff9ff3 0%, #f368e0 100%);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.project-title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.project-info {
    padding: 20px;
}

.project-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-badge.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.project-badge.popular {
    background: linear-gradient(135deg, #ffa726 0%, #ff7043 100%);
    color: #ffffff;
}

.project-badge.trending {
    background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%);
    color: #ffffff;
}

.project-badge.new {
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
    color: #ffffff;
}

.project-badge.premium {
    background: linear-gradient(135deg, #ff9ff3 0%, #f368e0 100%);
    color: #ffffff;
}

.project-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Startup Animation */
.startup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.startup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.startup-content {
    text-align: center;
    animation: startupPulse 2s ease-in-out infinite;
}

.startup-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.startup-icon {
    font-size: 4rem;
    animation: startupRotate 3s linear infinite;
}

.startup-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    animation: startupGlow 2s ease-in-out infinite alternate;
}

.startup-loading {
    width: 300px;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
    width: 0%;
}

.loading-text {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
}

/* Shooting Stars Animation */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff;
    animation: shootingStar 3s linear infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff);
}

/* Keyframe Animations */
@keyframes startupPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes startupRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes startupGlow {
    from { text-shadow: 0 0 20px rgba(255, 69, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 69, 0, 0.8), 0 0 40px rgba(255, 107, 53, 0.6); }
}

@keyframes fireGlow {
    from { 
        text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.6));
    }
    to { 
        text-shadow: 0 0 20px rgba(255, 69, 0, 1), 0 0 30px rgba(255, 107, 53, 0.8);
        filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8));
    }
}

@keyframes heroGlow {
    from { 
        filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.6));
    }
    to { 
        filter: drop-shadow(0 0 40px rgba(255, 69, 0, 0.9));
    }
}

@keyframes anjmsGlow {
    from {
        color: #ff4500;
        text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
    }
    to {
        color: #ffaa00;
        text-shadow: 0 0 20px rgba(255, 170, 0, 1), 0 0 30px rgba(255, 69, 0, 0.6);
    }
}

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

@keyframes anjmsPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 25px rgba(255, 107, 53, 1);
    }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes shootingStar {
    0% {
        transform: translateX(-100px) translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(100vh);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-island {
        min-width: 200px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .nav-island:hover {
        min-width: 320px;
        padding: 6px 15px;
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .nav-text {
        font-size: 0.75rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 90px 15px 30px;
    }
    
    .project-card {
        margin: 0 5px;
    }
    
    .project-stats {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}
