:root {
    --primary: #00ff88;
    --secondary: #00b8ff;
    --accent: #ff3e3e;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 184, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.nav.hidden {
    transform: translateY(-100%);
}

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

.nav-logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: transform 0.3s ease;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

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

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

/* Hamburger menu button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: 1rem;
}
.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.nav-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: rgba(10,10,10,0.97);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.5rem 2rem 2rem 2rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.25);
        transform: translateY(-30px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        z-index: 1001;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.3rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
}

/* Sections */
section {
    min-height: 100vh;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 50%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-text-wrapper {
    flex: 1;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
        opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    filter: blur(5px);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.btn-secondary {
    background: var(--glass);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Hero Image */
.hero-image {
    flex: 1;
    position: relative;
    height: 600px;
}

.floating-block {
    position: absolute;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-block:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 184, 255, 0.1));
}

.floating-block:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: 0;
    animation: float 8s ease-in-out infinite 1s;
    background: linear-gradient(45deg, rgba(0, 184, 255, 0.1), rgba(0, 255, 136, 0.1));
}

.floating-block:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 7s ease-in-out infinite 0.5s;
    background: linear-gradient(45deg, rgba(255, 62, 62, 0.1), rgba(0, 255, 136, 0.1));
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.05));
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--glass);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, rgba(0, 184, 255, 0.05), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: var(--glass);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-card:hover::before {
    opacity: 0.1;
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card span {
    display: block;
    position: relative;
    z-index: 1;
}

.contact-card .copy-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Music Player */
.music-player-panel {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 400px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.player-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.player-toggle-btn {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.player-toggle-btn:hover {
    transform: scale(1.1);
}

.player-content {
    padding: 1.5rem;
}

.album-art {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-art:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.music-controls {
    text-align: center;
}

.song-info {
    margin-bottom: 1.5rem;
}

.song-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.artist-name {
    color: rgba(255, 255, 255, 0.7);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.progress-bar-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient);
    width: 0;
    transition: width 0.1s linear;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.ctrl-btn {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctrl-btn:hover {
    background: var(--gradient);
    color: var(--dark);
    transform: scale(1.1);
}

.main-play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider-container {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.volume-slider {
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.volume-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient);
    width: 70%;
    pointer-events: none;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
    justify-content: center;
    }

    .hero-image {
        height: 400px;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .music-player-panel {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Project Status Badges */
.project-status {
    display: inline-block;
    margin-bottom: 0.7rem;
    margin-right: 0.5rem;
    padding: 0.25em 0.9em;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 1em;
    letter-spacing: 0.03em;
    background: rgba(255,255,255,0.07);
    color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
    vertical-align: middle;
}
.badge-active {
    background: linear-gradient(90deg, #00ff88 60%, #00b8ff 100%);
    color: #0a0a0a;
}
.badge-progress {
    background: linear-gradient(90deg, #ffb300 60%, #ffec80 100%);
    color: #0a0a0a;
}
.badge-paused {
    background: linear-gradient(90deg, #bdbdbd 60%, #757575 100%);
    color: #fff;
}
.badge-soon {
    background: linear-gradient(90deg, #ff3e3e 60%, #ffb300 100%);
    color: #fff;
} 

/* make the floating blocks to be disabled on mobile */
@media (max-width: 768px) {
    .floating-block {
        display: none;
    }
}
/*make the hero section on mobile more effected with cool effects*/
