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

:root {
    --alien-green: #39ff14;
    --alien-dark-green: #0a5f04;
    --space-black: #000;
    --space-dark: #0a0a0a;
    --space-gray: #121212;
}

body {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #fff;
    background-color: var(--space-black);
    overflow-x: hidden;
}

/* Hero Section with Video Background */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: var(--space-black);
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--space-black);
    z-index: 0;
    overflow: hidden;
}

.stars-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: twinkle 10s infinite linear;
}

.stars-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(white, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 25px 25px;
    opacity: 0.3;
    animation: twinkle 8s infinite linear;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10,95,4,0.3) 0%, rgba(0,0,0,0.8) 80%);
    z-index: 1;
}

.logo-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.logo-container h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-shadow: 0 0 25px var(--alien-green);
    color: var(--alien-green);
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 10px var(--alien-green), 0 0 20px var(--alien-green);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 15px var(--alien-green), 0 0 30px var(--alien-green), 0 0 40px var(--alien-green);
        transform: scale(1.03);
    }
}

.ufo {
    position: absolute;
    width: 80px;
    height: 40px;
    z-index: 1;
    animation: fly 15s linear infinite;
    opacity: 0.7;
}

@keyframes fly {
    0% {
        top: 20%;
        left: -80px;
        transform: rotate(10deg);
    }
    25% {
        top: 15%;
        transform: rotate(-5deg);
    }
    50% {
        top: 25%;
        transform: rotate(5deg);
    }
    75% {
        top: 10%;
        transform: rotate(-8deg);
    }
    100% {
        top: 20%;
        left: calc(100% + 80px);
        transform: rotate(10deg);
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    color: var(--alien-green);
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--alien-green);
    box-shadow: 0 0 15px var(--alien-green);
    animation: bounce 2s ease infinite, glow 2s ease infinite alternate;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    background-color: rgba(10, 95, 4, 0.3);
    transform: scale(1.1);
}

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

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--alien-green);
    }
    100% {
        box-shadow: 0 0 15px var(--alien-green), 0 0 25px var(--alien-green);
    }
}

/* Artists Section */
.artists-section {
    padding: 5rem 2rem;
    background-color: var(--space-gray);
    position: relative;
    overflow: hidden;
}

.artists-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stars.png');
    opacity: 0.15;
    z-index: 0;
}

.artists-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    color: var(--alien-green);
    text-shadow: 0 0 10px var(--alien-green);
    position: relative;
    z-index: 1;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.artist-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.artist-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--alien-green);
}

.artist-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
}

.artist-card:hover .artist-image {
    transform: scale(1.1);
}

.artist-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 2rem 1rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-name {
    background: linear-gradient(to top, rgba(10, 95, 4, 0.9), transparent);
    padding-bottom: 1.5rem;
    color: var(--alien-green);
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background-color: var(--space-black);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    color: var(--alien-green);
    text-shadow: 0 0 10px var(--alien-green);
}

.about-section p {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
}

/* Footer */
footer {
    padding: 2rem;
    background-color: var(--space-dark);
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid var(--alien-dark-green);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

.footer-links a:hover {
    color: var(--alien-green);
    text-shadow: 0 0 10px var(--alien-green);
}

.footer-links .current-page {
    color: var(--alien-green);
    font-weight: bold;
    text-shadow: 0 0 10px var(--alien-green);
    pointer-events: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 3rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .about-section p {
        font-size: 0.9rem;
    }
    
    .ufo {
        width: 60px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .logo-container h1 {
        font-size: 2.2rem;
    }
    
    .artist-name {
        font-size: 1rem;
    }
}

/* Additional styles for new elements */

.tagline {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px var(--alien-green);
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.alien-divider {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alien-icon {
    font-size: 1.5rem;
    display: inline-block;
    margin: 0 1rem;
    animation: float 3s ease-in-out infinite;
}

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

.alien-divider::before,
.alien-divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(to right, transparent, var(--alien-green), transparent);
    flex: 1;
    max-width: 100px;
}

.artist-highlight {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.artist-new, 
.artist-soon {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.artist-new {
    background-color: var(--alien-green);
    animation: pulse-bg 2s infinite alternate;
}

.artist-soon {
    background-color: #ffcc00;
}

@keyframes pulse-bg {
    0% {
        background-color: var(--alien-green);
        box-shadow: 0 0 5px var(--alien-green);
    }
    100% {
        background-color: #7aff5d;
        box-shadow: 0 0 15px var(--alien-green);
    }
}

/* Featured Release Section */
.featured-release {
    padding: 5rem 2rem;
    background-color: var(--space-gray);
    position: relative;
}

.featured-release::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stars.png');
    opacity: 0.15;
    z-index: 0;
}

.release-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(57, 255, 20, 0.2);
    position: relative;
    z-index: 1;
}

.release-artwork {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
}

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

.release-container:hover .release-artwork img {
    transform: scale(1.1);
}

.release-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.release-info h3 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--alien-green);
    margin-bottom: 0.5rem;
}

.release-info h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.release-date {
    color: #999;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stream-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--space-dark);
    color: var(--alien-green);
    border: 2px solid var(--alien-green);
    margin-right: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.stream-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    border: 2px dashed var(--alien-green);
}

.coming-soon-note {
    font-size: 0.9rem;
    color: var(--alien-green);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: pulse-text 2s infinite alternate;
}

.stream-button:hover {
    background-color: var(--alien-green);
    color: #000;
    box-shadow: 0 0 15px var(--alien-green);
    transform: translateY(-3px);
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--alien-green);
    text-shadow: 0 0 10px var(--alien-green);
}

/* Media Queries for new elements */
@media (max-width: 900px) {
    .release-container {
        flex-direction: column;
    }
    
    .release-artwork {
        flex: 0 0 auto;
        height: 300px;
    }
    
    .release-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1rem;
    }
    
    .release-info h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .alien-icon {
        font-size: 1.2rem;
    }
    
    .stream-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .release-info {
        padding: 1.5rem;
    }
}

/* Countdown styles */
.countdown {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--alien-green);
    display: flex;
    align-items: center;
}

.countdown span {
    font-size: 2.5rem;
    font-weight: 800;
    margin-right: 1rem;
    animation: pulse-text 2s infinite alternate;
}

@keyframes pulse-text {
    0% {
        color: var(--alien-green);
        text-shadow: 0 0 5px var(--alien-green);
    }
    100% {
        color: #fff;
        text-shadow: 0 0 15px var(--alien-green), 0 0 25px var(--alien-green);
    }
}

/* Particle effects */
.particles-container {
    pointer-events: none;
}

/* Industry Position Section */
.industry-position {
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: 30px;
}

.recognition-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.recognition-item {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid #39ff14;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
}

.recognition-item h3 {
    color: #39ff14;
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
}

.recognition-item p {
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

.join-us-cta {
    margin-top: 50px;
    padding: 30px;
    text-align: center;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(57, 255, 20, 0.1), rgba(0,0,0,0.7));
    border-radius: 8px;
}

.join-us-cta h3 {
    color: #39ff14;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #39ff14;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.cta-button:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
}

@media (max-width: 768px) {
    .recognition-content {
        flex-direction: column;
    }
    
    .recognition-item {
        min-width: auto;
    }
}

/* Alien Logo Styles */
.alien-logo {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.8));
    transition: all 0.3s ease;
}

.alien-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(57, 255, 20, 1));
}

.alien-divider .alien-logo {
    margin: 10px auto;
    width: 50px;
    height: 50px;
    display: block;
}

.header-logo {
    height: 60px;
    width: 60px;
    vertical-align: middle;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.7));
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Logo */
.footer-logo-image {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .header-logo {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }
    
    .alien-logo {
        width: 30px;
        height: 30px;
    }
    
    .alien-divider .alien-logo {
        width: 40px;
        height: 40px;
    }
}

/* Label info section */
.label-info {
    padding: 80px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.label-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg.png');
    opacity: 0.1;
    z-index: 0;
}

.label-info .container {
    position: relative;
    z-index: 1;
}

.promo-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #f0f0f0;
}

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

.feature-item {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #39ff14;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .label-info {
        padding: 60px 0;
    }
}

/* GASN Button */
.gasn-button {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background-color: var(--alien-green);
    color: var(--space-black);
    font-weight: bold;
    padding: 8px 12px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: -3px;
    opacity: 0.8;
}

.gasn-button:hover {
    background-color: var(--space-black);
    color: var(--alien-green);
    box-shadow: 0 0 15px var(--alien-green);
    right: 0;
    padding-right: 15px;
    opacity: 1;
}

@media (max-width: 768px) {
    .gasn-button {
        font-size: 12px;
        padding: 6px 10px;
        right: 10px;
    }
} 