/* The Melodramatics - MySpace Revival CSS */

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

body {
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    color: #000000;
    background: url('../assets/images/background.jpg') repeat-y top center;
    background-color: #ffffff;
    background-attachment: scroll;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

/* MySpace Top Bar */
.myspace-topbar {
    background: linear-gradient(180deg, #7EACDC 0%, #6699CC 50%, #5B8AB8 100%);
    border-bottom: 3px solid #FFFFFF;
    padding: 5px 0;
    font-size: 11px;
}

.topbar-content {
    width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.myspace-logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
}

.logo-my {
    color: #FFFFFF;
}

.logo-space {
    color: #FFFFFF;
}

.logo-dot {
    color: #FFFFFF;
}

.topbar-links,
.topbar-right {
    display: flex;
    gap: 15px;
}

.topbar-links a,
.topbar-right a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 3px 8px;
}

.topbar-links a:hover,
.topbar-right a:hover {
    text-decoration: underline;
}

/* MySpace Music Header */
.music-header {
    background: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
    border-bottom: 2px solid #0066CC;
    padding: 8px 0;
}

.music-header-content {
    width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.music-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: bold;
}

.music-icon {
    color: #0099FF;
    font-size: 24px;
}

.music-text {
    color: #0099FF;
}

.music-nav {
    display: flex;
    gap: 15px;
    font-size: 11px;
}

.music-nav a {
    color: #FFFFFF;
    text-decoration: none;
}

.music-nav a:hover {
    text-decoration: underline;
}

/* Header Section */
.header-container {
    width: 100%;
    position: relative;
    background: url('../assets/images/background.jpg') repeat-y top center;
    background-color: #ffffff;
}

.header-content {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.header-image {
    width: 1000px;
    height: auto;
    display: block;
}

/* Main Content Wrapper */
.main-wrapper {
    padding-top: 20px;
}

.content-container {
    width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 15px;
    padding: 0 20px 40px;
}

/* Column Styles */
.left-column,
.right-column {
    color: #000000;
}

/* Profile Picture */
.profile-pic-box {
    background: #FFFFFF;
    border: 2px solid #6699CC;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.profile-pic {
    width: 100%;
    max-width: 280px;
    height: auto;
    border: 1px solid #CCCCCC;
}

/* Profile Name */
.profile-name {
    color: #0066CC;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.online-status {
    color: #00CC00;
    font-weight: bold;
}

.info-label {
    color: #666666;
    font-weight: normal;
}

.profile-links {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #CCCCCC;
    text-align: center;
    font-size: 11px;
}

.profile-links a {
    color: #0066CC;
    text-decoration: none;
}

.profile-links a:hover {
    text-decoration: underline;
}

/* Section Boxes */
.profile-box,
.contact-box,
.members-box,
.info-box,
.friends-box,
.about-section,
.music-player-section,
.shows-section,
.blog-section {
    background-color: #FFFFFF;
    border: 2px solid #6699CC;
    padding: 12px;
    margin-bottom: 15px;
}

.section-title {
    color: #0066CC;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 2px solid #6699CC;
}

.box-title {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #7EACDC 0%, #6699CC 100%);
    padding: 5px 8px;
    border: 1px solid #5588BB;
}

/* Profile Info */
.profile-info {
    line-height: 1.7;
    font-size: 11px;
}

.profile-info p {
    margin: 5px 0;
}

.profile-info strong {
    color: #000000;
    font-weight: bold;
}

/* Top Friends */
.friends-count {
    margin-bottom: 12px;
    font-size: 11px;
}

.highlight {
    color: #FF6600;
    font-weight: bold;
}

.top-friends {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.friend {
    text-align: center;
}

.friend img {
    width: 100%;
    height: auto;
    border: 1px solid #CCCCCC;
    margin-bottom: 3px;
}

.friend p {
    font-size: 10px;
    margin: 0;
}

.friend a {
    color: #0066CC;
    text-decoration: none;
}

.friend a:hover {
    text-decoration: underline;
}

.view-all-friends {
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
}

.view-all-friends a {
    color: #0066CC;
    text-decoration: none;
}

.view-all-friends a:hover {
    text-decoration: underline;
}

/* Contact Table */
.contact-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.contact-row {
    display: contents;
}

.contact-link {
    display: block;
    background: linear-gradient(180deg, #FF6600 0%, #CC4400 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 11px;
    border: 1px solid #882200;
    border-radius: 3px;
    transition: all 0.2s;
}

.contact-link:hover {
    background: linear-gradient(180deg, #FF7722 0%, #DD5511 100%);
    color: #FFFF00;
    transform: translateY(-1px);
}

/* Band Members Grid */
.member-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.member {
    text-align: center;
}

.member img {
    width: 100%;
    height: auto;
    border: 2px solid #FF6600;
    border-radius: 5px;
    margin-bottom: 5px;
}

.member p {
    font-size: 11px;
    color: #ffffff;
}

/* Info Text */
.info-text {
    color: #000000;
    line-height: 1.6;
    font-size: 11px;
}

/* About Section */
.tagline {
    color: #000000;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: bold;
}

.blurb-section {
    margin-top: 15px;
}

.blurb-title {
    color: #0066CC;
    font-size: 12px;
    font-weight: bold;
    margin: 15px 0 8px;
}

.blurb-text {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 11px;
}

.blurb-text a {
    color: #0066CC;
    text-decoration: none;
}

.blurb-text a:hover {
    text-decoration: underline;
}

/* Music Player Styles */
.custom-player {
    background: #000000;
    border: 2px solid #333333;
    overflow: hidden;
}

.player-header {
    background: #000000;
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #333333;
}

.player-logo {
    max-width: 180px;
    height: auto;
}

.now-playing-bar {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 12px 15px;
    border-bottom: 1px solid #000000;
}

.track-title {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.track-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
}

.track-artist {
    color: #999999;
}

.track-plays {
    color: #666666;
}

.add-button {
    background: #0099FF;
    color: #FFFFFF;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-left: auto;
}

.add-button:hover {
    background: #0077CC;
}

/* Player Controls Bar */
.player-controls-bar {
    background: #000000;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333333;
}

.time-display {
    color: #666666;
    font-size: 10px;
    min-width: 35px;
    text-align: center;
}

.control-btn-small,
.control-btn-play {
    background: transparent;
    border: none;
    color: #CCCCCC;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
}

.control-btn-small:hover,
.control-btn-play:hover {
    color: #FFFFFF;
}

.control-btn-play {
    font-size: 18px;
    color: #0099FF;
}

.control-btn-play:hover {
    color: #00BBFF;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #222222;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    border: 1px solid #000000;
}

.progress-fill {
    height: 100%;
    background: #0099FF;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Playlist */
.playlist {
    background: #1a1a1a;
    border-top: 1px solid #333333;
}

.playlist-header {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000000;
}

.playlist-title {
    color: #CCCCCC;
    font-size: 11px;
    font-weight: bold;
}

.playlist-total {
    color: #666666;
    font-size: 10px;
}

.playlist-tracks {
    max-height: 250px;
    overflow-y: auto;
    background: #0a0a0a;
}

.playlist-track {
    background: #1a1a1a;
    border-bottom: 1px solid #000000;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.playlist-track:hover {
    background: #252525;
}

.playlist-track.active {
    background: #2a2a2a;
    border-left: 3px solid #0099FF;
}

.track-name {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: bold;
    flex: 1;
}

.track-plays-count {
    color: #666666;
    font-size: 10px;
}

.track-add-btn {
    background: #0099FF;
    color: #FFFFFF;
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    padding: 0;
    line-height: 1;
}

.track-add-btn:hover {
    background: #0077CC;
}

/* Shows Section */
.shows-list {
    margin-top: 10px;
}

.show-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #F5F5DC;
    border: 1px solid #999999;
    border-radius: 4px;
    margin-bottom: 10px;
}

.show-date {
    color: #FFFF00;
    background: #666666;
    font-weight: bold;
    min-width: 80px;
    padding: 5px 8px;
    border-radius: 3px;
    text-align: center;
    align-self: flex-start;
}

.show-details {
    flex: 1;
}

.show-time {
    color: #FF6600;
    font-weight: bold;
    font-size: 12px;
}

.show-venue {
    color: #000000;
    font-weight: bold;
    margin: 5px 0;
    font-size: 13px;
}

.show-location {
    color: #666666;
    font-size: 11px;
}

.featured-show {
    background: #FFE4B5;
    border: 2px solid #FF6600 !important;
}

.ticket-button {
    display: inline-block;
    background: linear-gradient(180deg, #FF6600 0%, #CC4400 100%);
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    margin-top: 10px;
    border: 2px solid #882200;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.ticket-button:hover {
    background: linear-gradient(180deg, #FF7722 0%, #DD5511 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    text-decoration: none !important;
}

.view-all {
    color: #FF6600;
    font-size: 12px;
    font-weight: normal;
    cursor: pointer;
}

.view-all:hover {
    color: #FF0000;
    text-decoration: underline;
}

/* Blog Section */
.blog-entry {
    margin-top: 10px;
}

.blog-title {
    color: #ffffff;
    margin: 8px 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-left: 3px solid #FF6600;
}

.view-more,
.view-all-link a {
    color: #FF6600;
    text-decoration: none;
    font-size: 11px;
}

.view-more:hover,
.view-all-link a:hover {
    color: #FF0000;
    text-decoration: underline;
}

.subscribe {
    color: #FF6600;
    font-size: 12px;
    font-weight: normal;
    cursor: pointer;
}

.view-all-link {
    text-align: center;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #7EACDC 0%, #6699CC 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    border-top: 3px solid #FFFFFF;
    margin-top: 40px;
}

.footer p {
    margin: 5px 0;
    font-size: 11px;
}

.footer-note {
    font-size: 10px;
    color: #E6F2FF;
}

/* Links */
a {
    color: #0066CC;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Scrollbar Styling */
.playlist-tracks::-webkit-scrollbar {
    width: 8px;
}

.playlist-tracks::-webkit-scrollbar-track {
    background: #000000;
}

.playlist-tracks::-webkit-scrollbar-thumb {
    background: #FF6600;
    border-radius: 4px;
}

.playlist-tracks::-webkit-scrollbar-thumb:hover {
    background: #FF7722;
}

/* Responsive Design */
@media (max-width: 1040px) {
    .content-container {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 0 15px 40px;
    }
    
    .header-content {
        width: 100%;
    }
    
    .header-image {
        width: 100%;
        height: auto;
    }
    
    .main-wrapper {
        margin-top: 60vw;
    }
}

@media (max-width: 768px) {
    .member-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-table {
        grid-template-columns: 1fr;
    }
    
    .player-controls {
        flex-wrap: wrap;
    }
    
    .volume-control {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* 2000s MySpace Effects */

/* Cursor Trail Particles */
.cursor-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px currentColor;
    animation: particle-fade 0.5s ease-out;
}

@keyframes particle-fade {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.5);
        opacity: 0;
    }
}

/* Falling Objects */
.falling-object {
    position: fixed;
    top: -50px;
    pointer-events: none;
    z-index: 9998;
    animation: fall linear;
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Blinking Online Status */
.online-status {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Glitter Text Effect */
.glitter-text {
    background: linear-gradient(
        45deg,
        #FF0000 0%,
        #FF6600 20%,
        #FFFF00 40%,
        #00FF00 60%,
        #0099FF 80%,
        #FF00FF 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitter 3s linear infinite;
    background-size: 200% auto;
}

@keyframes glitter {
    to {
        background-position: 200% center;
    }
}

/* Rainbow Text */
.rainbow-text {
    background: linear-gradient(
        to right,
        #FF0000,
        #FF7F00,
        #FFFF00,
        #00FF00,
        #0000FF,
        #4B0082,
        #9400D3
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes rainbow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Visitor Counter */
.visitor-counter {
    background: #000000;
    color: #00FF00;
    font-family: 'Courier New', monospace;
    padding: 2px 8px;
    border: 2px inset #888888;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: inset 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Mood Indicator */
.mood-indicator {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFB6C1 100%);
    border: 2px solid #FF69B4;
    padding: 8px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 11px;
}

.mood-text {
    color: #FF1493;
    font-weight: bold;
    text-transform: uppercase;
}

/* Marquee Scrolling Text */
.marquee-text {
    display: inline-block;
    animation: marquee 15s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Shoutout Box */
.shoutout-box {
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE4B5 100%);
    border: 3px double #FF6600;
    padding: 12px;
    margin: 15px 0;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.shoutout-text {
    color: #CC4400;
    font-weight: bold;
    line-height: 1.8;
    font-size: 12px;
}

/* Additional Blink Text */
.blink-text {
    animation: blink-fast 0.8s infinite;
    color: #FF0000;
    font-weight: bold;
}

@keyframes blink-fast {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}
