/* FourDuk Radio Web - Styles based on PorCulieRock theme */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFFFF; /* BackgroundWhite */
    color: #000000; /* TextBlack */
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header with Logo Block */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-block {
    background-color: #46505A; /* LogoDarkGray */
    color: #FFFFFF; /* TextWhite */
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* ButtonShadow */
    position: relative;
    overflow: hidden;
}

.logo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #FFD700; /* LogoYellow */
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.station-info {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 215, 0, 0.1); /* LogoYellow with alpha */
    border-radius: 8px;
    border-left: 4px solid #FFD700; /* LogoYellow */
}

.station-name {
    font-size: 1.8rem;
    color: #46505A; /* LogoDarkGray */
    margin-bottom: 10px;
    font-weight: 600;
}

.station-description {
    font-size: 1.1rem;
    color: #46505A; /* LogoDarkGray */
    opacity: 0.8;
}

/* Player Section */
.player-section {
    background-color: #FFFFFF;
    border: 2px solid #46505A; /* LogoDarkGray */
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.play-button-container {
    margin-bottom: 25px;
}

.play-button {
    background: linear-gradient(135deg, #FFB478, #FFC88C); /* PlayButtonOrange gradient */
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000; /* TextBlack */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 180, 120, 0.4);
    min-width: 120px;
    justify-content: center;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 180, 120, 0.6);
}

.play-button:active {
    transform: translateY(0);
}

.play-button svg {
    width: 24px;
    height: 24px;
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.now-playing, .status {
    font-size: 1rem;
    color: #46505A; /* LogoDarkGray */
}

.now-playing span, .status span {
    font-weight: 600;
    color: #000000; /* TextBlack */
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #46505A; /* LogoDarkGray */
    color: #FFFFFF; /* TextWhite */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(70, 80, 90, 0.3);
    min-width: 250px;
    text-align: center;
}

.link-button:hover {
    background-color: #FFD700; /* LogoYellow */
    color: #000000; /* TextBlack */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(70, 80, 90, 0.2);
    color: #808080; /* PatternGray */
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .station-name {
        font-size: 1.5rem;
    }
    
    .player-section {
        padding: 20px;
    }
    
    .links-section {
        gap: 12px;
    }
    
    .link-button {
        min-width: 200px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .station-name {
        font-size: 1.3rem;
    }
    
    .station-description {
        font-size: 1rem;
    }
    
    .play-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .link-button {
        min-width: 180px;
    }
}