/*
Theme Name: Radicas
Author: Kay7Colors
Version: 1.0
*/

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.radicas-header h1 {
    font-size: 32px;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.show-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s;
}

.show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.show-artwork {
    width: 100%;
    aspect-ratio: 1;
    background: #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.show-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.show-card h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.show-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.radicas-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: url('http://radicas.kaypride.blog/wp-content/uploads/2026/01/orora-scaled.jpeg') center/cover;
    background-blend-mode: overlay;
    background-color: rgba(102, 126, 234, 0.7);
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    position: relative;
}

.radicas-audio-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    z-index: 0;
}

.play-btn,
.player-controls {
    position: relative;
    z-index: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #667eea;
    border: none;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.player-controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.current-time,
.duration {
    font-size: 14px;
    font-weight: bold;
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s;
    border-radius: 4px;
}

.show-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.show-buttons a {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.show-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

.btn-itunes {
    background: linear-gradient(135deg, #FA243C 0%, #ff4757 100%);
}

.btn-x {
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.btn-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.radicas-playlist {
    padding: 60px 0;
    background: #f9f9f9;
}

.radicas-playlist h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.playlist-dummy {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.radicas-footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .shows-grid {
        grid-template-columns: 1fr;
    }
}
.powerpress_player {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.powerpress_player audio {
    width: 100% !important;
    height: 60px;
    border-radius: 30px;
    filter: brightness(0.95);
}

.powerpress_player audio::-webkit-media-controls-panel {
    background: rgba(255,255,255,0.9);
    border-radius: 30px;
}

.powerpress_player audio::-webkit-media-controls-play-button {
    background: #1DB954;
    border-radius: 50%;
    transform: scale(1.2);
}

.powerpress_player audio::-webkit-media-controls-timeline {
    border-radius: 10px;
}

.powerpress_links {
    display: none !important;
}

.powerpress_subscribe_links {
    display: none !important;
}
.radicas-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0 40px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 110px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: #333;
    transition: color 0.3s;
}

.header-social a:hover {
    color: #667eea;
}

.header-search form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    background: #f5f5f5;
}

.header-search input {
    border: none;
    background: none;
    outline: none;
    padding: 5px 10px;
    width: 200px;
}

.header-search button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: #666;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-logo img {
        height: 50px;
    }
}
.line-purple {
    height: 3px;
    background: #be43ee;
}

.line-blue {
    height: 25px;
    background: #d8beff;
}

.line-green {
    height: 10px;
    background: #4271d5;
}

.line-yellow {
    height: 7px;
    background: #581bff;
}
.radicas-nav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.nav-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #4271d5;
    padding: 15px 10px 10px 10px;
    transition: background 0.3s;
}

.nav-menu li a:hover {
    background: #f9f9f9;
}

.nav-menu li a .menu-icon {
    font-size: 36px !important;
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 5px;
    color: #4271d5;
}

.nav-menu li a i {
    font-size: 36px !important;
    color: #4271d5;
}

.nav-menu li a span {
    font-size: 12px;
    font-weight: 400;
    color: #4271d5;
}
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex: 1;
    border-right: 1px solid #e5e5e5;
}

.nav-menu li:last-child {
    border-right: none;
}
.hero-section {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.hero-overlay p {
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.hero-info {
    background: #000;
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
    margin-bottom: 0;
}

.hero-info .container {
    padding: 0 20px;
}

.info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    font-size: 14px;
}

.info-text span {
    white-space: nowrap;
}
.info-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
}

.info-widget p,
.info-widget * {
    color: #fff !important;
}

.info-widget .widget-title {
    display: none;
}
body {
    background: #f5f5f5;
}

main {
    background: #f5f5f5;
}

.radicas-shows {
    padding: 20px 0;
    background: #f5f5f5;
}

.radicas-shows h2 {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
}