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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Latest Release */
.latest-release {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.song-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.song-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.song-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.artist {
    color: #666;
    margin-bottom: 0.5rem;
}

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

/* Links */
.links, .song-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Buttons */
.btn, .btn-small {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff5500;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn:hover, .btn-small:hover {
    background: #cc4400;
}

.btn.youtube {
    background: #ff0000;
}

.btn.tunecore {
    background: #00a0dc;
}

.btn.danger {
    background: #dc3545;
}

.btn.danger:hover {
    background: #c82333;
}

/* Navigation Cards */
.navigation {
    margin-top: 2rem;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.nav-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-card h3 {
    color: #ff5500;
    margin-bottom: 0.5rem;
}

/* Songs List */
.songs-list {
    display: grid;
    gap: 2rem;
}

.song-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
}

.song-jacket {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.song-details {
    flex: 1;
}

.delete-radio {
    margin-right: 1rem;
}

/* Admin Controls */
.admin-controls {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="date"],
input[type="file"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

small {
    color: #666;
    font-size: 0.85rem;
}

/* Board */
.board-container {
    display: grid;
    gap: 2rem;
}

.post-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.posts-list {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-item {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: #fafafa;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.post-date {
    color: #999;
    font-size: 0.85rem;
}

.post-content {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.replies {
    margin-top: 1.5rem;
    margin-left: 2rem;
    padding-left: 1rem;
    border-left: 3px solid #ff5500;
}

.reply-item {
    background: white;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.admin-badge {
    color: #ff5500;
}

.reply-content {
    line-height: 1.6;
}

.reply-form {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    color: white;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .song-card {
        flex-direction: column;
    }
    
    .song-card img {
        width: 100%;
        height: auto;
    }
    
    .song-item {
        flex-direction: column;
    }
    
    .song-jacket {
        width: 100%;
        height: auto;
    }
    
    .replies {
        margin-left: 0;
    }
}