.weather-main {
    padding-top: 80px;
}

.weather-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Wave Animation Styles */
.wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.wave-circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
}

.wave-1 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave-2 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave-4 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Audio Controls */
.audio-controls {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

.audio-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 15px solid var(--dark-bg);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
    transition: all 0.3s ease;
}

.audio-btn.playing .play-icon {
    border-left: 6px solid var(--dark-bg);
    border-right: 6px solid var(--dark-bg);
    border-top: 0;
    border-bottom: 0;
    width: 4px;
    height: 20px;
    margin-left: 0;
}

/* Weather Header Content */
.weather-header .title,
.weather-header .subtitle {
    position: relative;
    z-index: 5;
}

.crypto-weather-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.weather-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.weather-card:hover {
    transform: translateY(-5px);
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.weather-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.crypto-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.crypto-price {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.crypto-change {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.crypto-change.positive {
    color: var(--success-color);
}

.crypto-change.negative {
    color: var(--error-color);
}

.market-summary {
    padding: 2rem;
    margin: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* Weather Icons Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.weather-icon {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .weather-header {
        min-height: 50vh;
        padding: 2rem 1rem;
    }
    
    .sound-waves {
        width: 150px;
        height: 150px;
    }
    
    .wave-1 {
        width: 40px;
        height: 40px;
    }
    
    .wave-2 {
        width: 80px;
        height: 80px;
    }
    
    .wave-3 {
        width: 120px;
        height: 120px;
    }
    
    .wave-4 {
        width: 150px;
        height: 150px;
    }
    
    .audio-btn {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        border-left-width: 12px;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }
    
    .audio-btn.playing .play-icon {
        border-left-width: 5px;
        border-right-width: 5px;
        width: 3px;
        height: 16px;
    }

    .crypto-weather-cards {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .market-summary {
        margin: 1rem;
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

    .crypto-name {
        font-size: 1.2rem;
    }

    .crypto-price {
        font-size: 1.5rem;
    }
}