html {
    scroll-behavior: smooth;
}

:root {
    --oxi-orange: #FF6B35;
    --oxi-dark: #0F0A1E;
    --oxi-purple: #5E2BFF;
    --oxi-blue: #00C2FF;
    --oxi-pink: #FF2D75;
    --oxi-text: rgba(255,255,255,0.9);
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--oxi-dark);
    color: var(--oxi-text);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(94, 43, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
}

.section-title {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--oxi-orange), var(--oxi-blue));
    background-clip: text;
    color: transparent;
}

/* Header Structure */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(15, 10, 30, 0.7);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-arc {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse at center, 
    rgba(255,107,53,0.4) 0%, 
    transparent 70%);
}

  /* Navigation Container */
.neon-nav {
    display: flex;
    gap: 1.5rem;
    padding: 0 2rem;
}

  /* Base Button Style */
.nav-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-text {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

  /* Projects Button - Portal Effect */
.portal-btn {
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.portal-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
    rgba(0,194,255,0.4) 0%, 
    rgba(0,194,255,0) 70%);
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.portal-btn:hover {
    box-shadow: 0 0 15px rgba(0,194,255,0.3);
}

.portal-btn:hover .portal-circle {
    transform: translate(-50%, -50%) scale(1.5);
}

  /* About Button - Glitch Effect */
.glitch-btn {
    background: rgba(94, 43, 255, 0.1);
    border: 1px solid rgba(94, 43, 255, 0.3);
}

.glitch-layers {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255,255,255,0.1) 50%,
    transparent 55%
    );
    background-size: 200% 200%;
    opacity: 0;
    transition: all 0.5s ease;
}

.glitch-btn:hover {
    box-shadow: 0 0 15px rgba(94, 43, 255, 0.3);
    animation: glitch-bg 0.4s linear 2;
}

.glitch-btn:hover .glitch-layers {
    opacity: 1;
    animation: glitch 0.4s linear infinite;
}
@keyframes glitch {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

@keyframes glitch-bg {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

  /* Contact Button - Pulse Effect */
.pulse-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--oxi-orange);
    border-radius: 50%;
    opacity: 0;
}

.pulse-btn:hover {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.pulse-btn:hover .pulse-ring {
    animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
    0% { 
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
    }
    100% { 
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
    }
}

  /* Responsive Design */
@media (max-width: 768px) {
    .neon-nav {
    gap: 0.8rem;
    padding: 0 1rem;
    }
    
    .nav-btn {
    padding: 0.7rem 1.2rem;
    }
    
    .btn-text {
    font-size: 0.9rem;
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--oxi-orange), var(--oxi-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.dev-logos {
    display: flex;
    align-items: flex-start;
    transform: translate(20%);
    overflow: hidden;
}

.dev-logos img {
    border-radius: 50%;
}

.studio-img {
    transform: translate(-50%);
    z-index: -1;
    animation: float1 3s ease-in-out infinite;
}

.discord-profile {
    animation: float2 3s ease-in-out infinite;
}

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

@keyframes float2 {
    0% {
    transform: translateY(-20px);
    }
    50% {
    transform: translateY(0px);
    }
    100% {
    transform: translateY(-20px);
    }
}

/* Projects Section */
/* .projects-section {
    padding: 6rem 10%;
    background: rgba(0,0,0,0.2);
}

.projects-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--oxi-orange), var(--oxi-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
} */

/* Projects Section */
.projects-section {
    padding: 5rem 10%;
    background: rgba(0,0,0,0.2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-info {
    padding: 1.5rem;
}

.project-badges {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    font-size: 0.8rem;
    font-weight: 600;
}

.project-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: rgba(0,194,255,0.1);
    color: var(--oxi-blue);
    border: 1px solid rgba(0,194,255,0.3);
}

.btn-primary:hover {
    background: rgba(0,194,255,0.2);
}

.btn-secondary {
    background: rgba(255,107,53,0.1);
    color: var(--oxi-orange);
    border: 1px solid rgba(255,107,53,0.3);
}

.btn-secondary:hover {
    background: rgba(255,107,53,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* .project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
} */
/* 
.badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    font-size: 0.8rem;
    font-weight: 600;
} */

/* Released Games Section */
.released-section {
    padding: 5rem 10%;
    background: linear-gradient(
        rgba(15, 10, 30, 0.9),
        rgba(15, 10, 30, 0.7)
    );
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,0.25fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    max-width: 500px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.game-image {
    height: 300px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-content {
    padding: 1.5rem;
}

.game-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.game-badges {
    display: flex;
    gap: 0.5rem;
    margin: 0.8rem 0;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.store-btn {
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.store-btn.ios {
    background: #000;
    color: white;
}

.store-btn.android {
    background: #689f38;
    color: white;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .store-buttons {
        flex-direction: column;
    }
}

/* About Section */
.about-section {
    padding: 6rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--oxi-orange), var(--oxi-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Desktop layout */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: row;
        text-align: left;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        display: list-item;
    }
    /* .projects-grid {
        grid-template-columns: 1fr;
    } */
    .dev-logos {
        display: none;
    }
}

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

.skill {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.skill i {
    font-size: 2rem;
    color: var(--oxi-orange);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 10%;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--oxi-orange), var(--oxi-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #5865F2;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--oxi-orange);
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--oxi-orange);
    color: white;
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive */

@media (max-width: 768px) {
    nav {
        margin-top: 1rem;
    }
    
    nav a {
        margin: 0 1rem;
    }
    
    .hero {
        display: list-item;
        padding: 6rem 5% 3rem;
        text-align: center;
        transform: translateY(21%);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}