/* 🎨 Red + Black Theme Styles */

:root {
    --bg-primary: #0f0f0f;   /* dark background */
    --bg-secondary: #1a1a1a; /* card background */
    --bg-card: rgba(26, 26, 26, 0.95);

    --text-primary: #ffffff;   /* white text */
    --text-secondary: #d1d5db; /* lighter gray text */
    --text-muted: #9ca3af;     /* muted gray */

    --accent-red: #ef4444;       /* main red */
    --accent-red-dark: #b91c1c;  /* darker red for hover */
    --accent-red-light: #f87171; /* lighter red for gradients/badges */

    --border-light: rgba(239, 68, 68, 0.4); /* red-tinted borders */

    --shadow-sm: 0 1px 3px 0 rgba(239, 68, 68, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(239, 68, 68, 0.4);
    --shadow-2xl: 0 25px 50px -12px rgba(239, 68, 68, 0.45);
    --shadow-3xl: 0 35px 60px -12px rgba(239, 68, 68, 0.5);

    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Background Effects */
.background-gradient {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    z-index: -2;
    transition: all 0.5s ease;
}

.background-pattern {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(239, 68, 68, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: -1;
}

/* Edit Mode Toggle */
.edit-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
}
.edit-toggle:hover {
    background: var(--accent-red);
    color: white;
}
.edit-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Quick Actions */
.quick-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1000;
}

.quick-btn {
    width: 3rem;
    height: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.quick-btn:hover {
    background: var(--accent-red);
    color: white;
    transform: scale(1.1);
}

.quick-icon {
    width: 1rem;
    height: 1rem;
}

/* Enhanced Edit Mode */
body.edit-mode {
    --bg-primary: #f0f9ff;
}

body.edit-mode .section-edit-btn,
body.edit-mode .music-edit-btn {
    opacity: 1;
    pointer-events: auto;
}

/* Section Edit Buttons */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-edit-btn,
.music-edit-btn {
    width: 2rem;
    height: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.music-edit-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.section-edit-btn:hover,
.music-edit-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    position: relative;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--accent-red);
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-red-light);
    box-shadow: var(--shadow-sm);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse-soft 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--text-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card Base */
.card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: var(--shadow-3xl);
}

.card-content {
    padding: 2rem;
}

/* Profile Card */
.profile-card {
    overflow: visible;
}

.card-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, transparent 50%, rgba(185, 28, 28, 0.05) 100%);
    pointer-events: none;
}

.profile-content {
    position: relative;
    padding: 2.5rem;
}

.profile-header {
    margin-bottom: 2rem;
}

.profile-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.avatar-container {
    position: relative;
    flex-shrink: 0;
}

.avatar {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
    transition: all 0.3s ease;
}

.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 2rem;
    height: 2rem;
    background: var(--accent-red);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.verified-icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.profile-details {
    flex: 1;
}

.profile-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    color: var(--accent-red);
}

.profile-username {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    background: rgba(148, 163, 184, 0.2);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.edit-profile-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.edit-profile-btn:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    transform: scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Spotify Card */
.spotify-card {
    position: relative;
}

.spotify-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%, rgba(52, 211, 153, 0.05) 100%);
    pointer-events: none;
}

.spotify-content {
    position: relative;
    padding: 2rem;
}

.spotify-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.spotify-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spotify-icon-container {
    width: 3rem;
    height: 3rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotify-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-green);
}

.spotify-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.spotify-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-green);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-soft 2s infinite;
}

.hd-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hd-icon {
    width: 0.75rem;
    height: 0.75rem;
}

.spotify-player {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.album-art-container {
    position: relative;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-art-container:hover {
    box-shadow: var(--shadow-2xl);
}

.album-art-container:hover .play-overlay {
    opacity: 1;
}

.album-art {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-art-container:hover .album-art {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.external-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn,
.next-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.play-btn:hover,
.next-btn:hover {
    background: rgba(148, 163, 184, 0.1);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.play-icon,
.next-icon {
    width: 1rem;
    height: 1rem;
    color: var(--text-primary);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.time-current,
.time-duration {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    color: var(--text-muted);
    min-width: 35px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.progress-bar:hover {
    height: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--text-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(148, 163, 184, 0.05);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.skill-item:hover {
    background: rgba(148, 163, 184, 0.1);
    transform: translateY(-2px);
}

.skill-level {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    border-radius: 0 0 var(--radius) var(--radius);
    transition: all 0.3s ease;
}

.skill-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.skill-name {
    font-weight: 500;
    color: var(--text-primary);
}

/* Section Titles */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.title-icon {
    width: 2rem;
    height: 2rem;
    background: var(--accent-red);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

/* About Card */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.flag {
    font-size: 1.5rem;
}

.verified-small {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-blue);
}

.about-bio {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Member Card */
.member-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.member-icon-container {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent-indigo);
}

.member-details {
    display: flex;
    flex-direction: column;
}

.member-date {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.member-platform {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Connections Card */
.connections-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.connection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.connection-item:hover {
    background: rgba(148, 163, 184, 0.05);
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.connection-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connection-icon-container {
    width: 3rem;
    height: 3rem;
    background: rgba(148, 163, 184, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.connection-item:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
    background: rgba(148, 163, 184, 0.2);
}

.connection-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-secondary);
}

.connection-details {
    display: flex;
    flex-direction: column;
}

.connection-username {
    font-weight: 600;
    color: var(--text-primary);
}

.verified-badge-small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--accent-blue);
    margin-top: 0.25rem;
}

.verified-icon-small {
    width: 0.75rem;
    height: 0.75rem;
}

.connected-badge-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.external-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.connection-item:hover .external-icon {
    color: var(--text-secondary);
}

/* Stats Card */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.2s ease;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item:hover {
    padding-left: 0.5rem;
    background: rgba(148, 163, 184, 0.05);
    border-radius: 0.5rem;
    margin: -0.5rem;
    padding: 1rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    transition: all 0.2s ease;
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3xl);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--accent-red);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Example button overrides */
.btn-primary {
    background: var(--accent-red);
    color: white;
}
.btn-primary:hover {
    background: var(--accent-red-dark);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(148, 163, 184, 0.1);
}

.btn-danger {
    background: var(--accent-red-dark);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: white;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Connection Editor */
.connection-edit-item {
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: rgba(148, 163, 184, 0.02);
}

.preset-songs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Animations */
@keyframes pulse-soft {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .profile-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-details {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .spotify-player {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content,
    .profile-content,
    .spotify-content {
        padding: 1.5rem;
    }
    
    .edit-toggle,
    .quick-actions {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}
