@font-face {
    font-family: 'MagmaWave';
    src: url('attached_assets/MagmaWave Caps_1762280897288.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a2e;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('attached_assets/gogo-mojo_1762279402197.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 1rem;
    transform: translateY(-200px);
}

.band-name {
    font-family: 'MagmaWave', sans-serif;
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF1493, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 1.5rem;
    color: #00CED1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
    line-height: 1.8;
}

.listen-now {
    padding: 5rem 0;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
    text-align: center;
}

.listen-now h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF1493;
}

.listen-now p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.music-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: #fff;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    min-height: 120px;
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.platform-name {
    color: white;
    font-size: 1rem;
}

.platform-btn.spotify {
    background: linear-gradient(135deg, #1DB954, #1ed760);
}

.platform-btn.apple {
    background: linear-gradient(135deg, #FA243C, #ff4d6a);
}

.platform-btn.youtube {
    background: linear-gradient(135deg, #FF0000, #ff3333);
}

.platform-btn.soundcloud {
    background: linear-gradient(135deg, #FF5500, #ff7733);
}

.platform-btn.bandcamp {
    background: linear-gradient(135deg, #1DA0C3, #4db8d4);
}

.platform-btn.tidal {
    background: linear-gradient(135deg, #000000, #333333);
}

.platform-btn.deezer {
    background: linear-gradient(135deg, #a133f8, #333333);
}

.platform-btn.amazon {
    background: linear-gradient(135deg, #00cbd3, #333333);
}

.platform-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.newsletter {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00CED1;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.email-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #00CED1;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FF1493;
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.3);
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF1493, #FFA500);
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

.form-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

footer {
    background-color: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    color: #888;
    font-size: 1.25rem;
}

a.footerlink
    {
    color: #00CED1;
    color: hsl(120, 100%, 50%); /* Green */
    }

@media (max-width: 768px) {
    .hero-image {
        background-position: center center;
    }
    
    .band-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .about h2,
    .listen-now h2,
    .newsletter h2 {
        font-size: 2rem;
    }
    
    .about p,
    .listen-now p,
    .newsletter p {
        font-size: 1rem;
    }
    
    .music-platforms {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .platform-btn {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .platform-icon {
        font-size: 2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .band-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

a {
color: #00CED1; /* Default color for unvisited links */
}

/* Styling for unvisited links */
a:link {color: #00CED1;
}

/* Styling for visited links */
a:visited {
color: #00CED1;
}