/* === Global Styles === */
:root {
    --dark-blue: #1A237E;
    --purple: #7E57C2;
    --teal: #26A69A;
    --gold: #FFD700;
    --dark-bg: #121212;
    --light-text: #E0E0E0;
    --gray: #263238;
    --pink: #EC407A;
    --cyan: #00ACC1;
    --warning-red: #E53935;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0, 0); opacity: 1; }
    100% { transform: scale(20, 20); opacity: 0; }
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--teal);
    margin-left: 15px;
}

.btn-music {
    background: linear-gradient(45deg, var(--pink), var(--purple));
    margin-top: 20px;
    display: inline-block;
}

.btn-purpose {
    background: linear-gradient(45deg, var(--gold), var(--teal));
    color: #121212;
    font-weight: 600;
    border: none;
}

.btn-purpose:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

section {
    padding: 100px 0;
    position: relative;
}

/* === Video Background === */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.5) 0%, rgba(18, 18, 18, 0.7) 100%);
}

/* === Header === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

header.scrolled {
    background-color: rgba(26, 35, 126, 0.85);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--gold);
    transition: color 0.3s ease;
}

.logo:hover span {
    color: var(--teal);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Mobile navigation adjustments */
@media (max-width: 768px) {
    nav ul li {
        margin-left: 10px;
        white-space: nowrap;
    }
    
    nav ul li a {
        font-size: 14px;
    }
    
    .mobile-contacts {
        display: inline-block;
        white-space: nowrap;
    }
}

/* === Hero Section === */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .hero-content {
        max-width: 800px;
        padding: 0;
    }
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    color: white;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 64px;
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        display: none;
    }
}

.hero-content h1 span {
    color: var(--gold);
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(45deg, var(--gold), var(--teal), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradient 8s ease infinite;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 20px;
    }
}

/* === Unified Player === */
.unified-player {
    max-width: 100%;
    width: 100%;
    margin: 40px auto;
    background: rgba(20, 20, 30, 0.3);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: auto;
    min-height: 280px;
}

@media (min-width: 768px) {
    .unified-player {
        max-width: 600px;
    }
}

.unified-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .player-header {
        flex-direction: row;
    }
}

.player-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .player-tabs {
        margin-bottom: 0;
    }
}

.player-tab {
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.player-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.player-tab.active {
    background: linear-gradient(45deg, var(--purple), var(--teal));
    color: white;
    transform: translateY(-2px);
}

.player-now-playing {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.track-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    transition: color 0.3s ease;
    display: inline;
}

@media (min-width: 768px) {
    .track-title {
        font-size: 24px;
        display: block;
    }
}

.track-artist {
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: inline;
}

@media (min-width: 768px) {
    .track-artist {
        font-size: 20px;
        display: block;
    }
}

.player-body {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    flex-direction: column;
}

@media (min-width: 768px) {
    .player-body {
        flex-direction: row;
    }
}

.vinyl-container {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin: 0 auto;
}

.vinyl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #222, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.6);
    animation: rotate 20s linear infinite;
    animation-play-state: paused;
    transition: transform 0.5s;
}

.vinyl:hover {
    transform: scale(1.05);
}

.vinyl-inner {
    width: 40%;
    height: 40%;
    background: linear-gradient(45deg, #333, #111);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    border: 2px solid #444;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-inner img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.5s;
}

.player-controls {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    order: 1;
    margin-bottom: 15px;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: #121212;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
    transform: scale(1);
}

.play-btn:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.play-btn:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.control-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(0) scale(1.1);
}

.control-btn:active {
    transform: scale(0.9);
}

.progress-container {
    order: 2;
    margin-bottom: 15px;
    width: 100%;
}

.progress-bar {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: height 0.2s;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    transition: all 0.2s;
}

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

.progress-bar:hover::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.7;
}

/* Визуализатор музыки */
.visualizer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    gap: 3px;
    margin: 15px 0;
    position: relative;
    width: 100%;
}

.visualizer-bar {
    width: 5px;
    height: 5%;
    background: linear-gradient(to top, var(--purple), var(--teal), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: height 0.05s ease-out, opacity 0.3s ease;
    opacity: 0.8;
}

.visualizer-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 30, 40, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    opacity: 0;
    transition: opacity 0.8s ease;
    max-width: 80%;
    text-align: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.visualizer-message.visible {
    opacity: 0.9;
}

.player-footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--pink), var(--purple));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.player-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.player-cta:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.player-cta:hover:after {
    left: 100%;
}

.platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.platforms-label {
    font-size: 14px;
    opacity: 0.8;
    margin-right: 10px;
}

.platforms i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.platforms i:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* === Mini Player === */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 30, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 990;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    opacity: 0.8;
    display: none;
}

.mini-player.visible {
    display: block;
}

.mini-player:hover {
    opacity: 1;
    background: rgba(20, 20, 30, 0.9);
}

.mini-player-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mini-cover {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mini-cover:hover {
    transform: scale(1.1);
}

.mini-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.mini-track-title {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-track-artist {
    font-size: 12px;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
}

.mini-play-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold);
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

.mini-prev-btn,
.mini-next-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 10px;
}

.mini-prev-btn:hover,
.mini-next-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mini-progress-container {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-progress-bar {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: height 0.2s;
}

.mini-progress-bar:hover {
    height: 6px;
}

.mini-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.mini-time-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    opacity: 0.7;
}

/* Mini Visualizer */
.mini-visualizer {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
    width: 100px;
    margin-left: 10px;
}

.mini-visualizer-bar {
    width: 3px;
    height: 5px;
    background: linear-gradient(to top, var(--purple), var(--teal));
    border-radius: 2px 2px 0 0;
    transition: height 0.05s ease-out;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .mini-visualizer {
        display: none;
    }
    
    .mini-player {
        height: 60px;
        background: rgba(20, 20, 30, 0.8);
    }
    
    .mini-player-content {
        padding: 10px;
    }
    
    .mini-progress-container {
        display: none;
    }
    
    .mini-visualizer {
        display: flex;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        gap: 0;
        margin: 0;
        z-index: -1;
    }
    
    .mini-visualizer-bar {
        flex: 1;
        height: 3px;
        border-radius: 0;
        opacity: 0.3;
    }
}

/* === About Section === */
#about {
    background-color: var(--gray);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 150px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-direction: column;
}

@media (min-width: 992px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

.name-concept {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    border-left: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.name-concept:hover {
    transform: translateY(-5px);
}

.name-concept:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--purple), var(--teal));
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.name-concept h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold);
}

.name-concept ul {
    list-style: none;
}

.name-concept li {
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
    transition: transform 0.3s;
}

.name-concept li:hover {
    transform: translateX(5px);
}

.name-concept li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--gold);
    font-size: 20px;
}

.about-image {
    flex: 1;
    position: relative;
    transition: transform 0.5s;
    width: 100%;
}

@media (min-width: 992px) {
    .about-image {
        margin-top: 0;
    }
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s;
}

.studio-facts {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .fact-item {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.fact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.fact-item i {
    color: var(--gold);
    font-size: 18px;
    min-width: 25px;
}

.fact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    padding: 100px 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.5s;
}

.step-card:hover .step-number {
    transform: rotate(360deg) scale(1.2);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--gold);
}

.step-card p {
    opacity: 0.8;
    font-size: 16px;
}

/* === Stats Section === */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
    width: 50%;
}

@media (min-width: 768px) {
    .stat-item {
        width: auto;
    }
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* === Hypno Section === */
.hypno-section {
    background: linear-gradient(45deg, var(--dark-blue), var(--gray));
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.hypno-section:hover {
    transform: translateY(-5px);
}

.hypno-section:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 8s infinite linear;
    z-index: 0;
}

@keyframes pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hypno-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hypno-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.pulse-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, var(--pink), var(--purple));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
    animation: pulseBtn 2s infinite;
}

.pulse-btn:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pulse-btn:active {
    transform: scale(0.98);
}

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 0;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
}

.service-icon i {
    font-size: 30px;
    color: white;
    transition: transform 0.3s;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Compact Player in Services */
.compact-player {
    margin: 15px 0;
}

.compact-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.compact-prev-btn,
.compact-next-btn,
.compact-play-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 10px;
}

.compact-play-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.compact-prev-btn:hover,
.compact-next-btn:hover,
.compact-play-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.compact-progress {
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.compact-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.compact-time {
    font-size: 12px;
    opacity: 0.7;
    min-width: 40px;
    text-align: center;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.price:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    background: var(--gold);
}

.service-card:hover .price:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === Testimonials Section === */
.testimonials {
    background-color: var(--dark-blue);
    padding: 100px 0;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial {
    min-width: 350px;
    scroll-snap-align: start;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.testimonial:hover .testimonial-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 24px;
    color: var(--gold);
    opacity: 0.5;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
}

.testimonial:hover .client-info img {
    transform: scale(1.1);
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 14px;
    opacity: 0.7;
}

/* === Contact Section === */
#contact {
    padding: 100px 0;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
}

.contact-intro:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-direction: column;
}

@media (min-width: 992px) {
    .contact-container {
        flex-direction: row;
    }
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(126, 87, 194, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s;
}

.info-item:hover .info-icon {
    background-color: rgba(126, 87, 194, 0.4);
    transform: rotate(15deg);
}

.info-icon i {
    font-size: 24px;
    color: var(--purple);
    transition: transform 0.3s;
}

.info-item:hover .info-icon i {
    transform: scale(1.1);
}

.info-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.info-content a {
    color: var(--light-text);
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--gold);
}

.contact-form {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-intro {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(126, 87, 194, 0.2);
    box-shadow: 0 0 10px rgba(126, 87, 194, 0.3);
    transform: translateY(-2px);
}

.vocal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-direction: column;
}

@media (min-width: 576px) {
    .vocal-buttons {
        flex-direction: row;
    }
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* === Footer === */
footer {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    padding: 80px 0 20px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo span {
    color: var(--gold);
    transition: color 0.3s;
}

.footer-logo:hover span {
    color: var(--teal);
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--purple);
    transform: translateY(-3px) scale(1.1);
}

.social-icon i {
    font-size: 18px;
    color: white;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 20px;
}

.subscribe-form {
    display: flex;
    margin-top: 20px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px 0 0 5px;
    color: white;
    transition: all 0.3s;
}

.subscribe-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.subscribe-form button {
    background: var(--gold);
    color: #121212;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background: #ffea00;
    transform: scale(1.05);
}

.distribution-platforms {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.distribution-platforms p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.platform-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.platform-icons i {
    font-size: 24px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.platform-icons i:hover {
    transform: translateY(-3px);
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 14px;
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* === Navigation Buttons === */
.nav-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(126, 87, 194, 0.8);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1);
}

.nav-btn:hover {
    background: var(--purple);
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* === Tooltips === */
.tooltip {
    position: absolute;
    background: rgba(126, 87, 194, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 15px;
    max-width: 250px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    pointer-events: none;
}

.tooltip.visible {
    opacity: 0.9;
    transform: translateY(0);
    pointer-events: auto;
}

.tooltip-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.tooltip-close:hover {
    background: rgba(255,255,255,0.2);
}

.tooltip-content {
    font-size: 14px;
    line-height: 1.4;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Vocal popup styles */
.vocal-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 30, 40, 0.95);
    padding: 25px;
    border-radius: 15px;
    z-index: 1000;
    max-width: 300px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    display: none;
    border: 1px solid var(--gold);
}

.vocal-popup.visible {
    display: block;
    animation: fadeIn 0.5s;
}

.vocal-popup p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

.vocal-popup-btn {
    background: var(--gold);
    color: #121212;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.vocal-popup-btn:hover {
    transform: scale(1.05);
    background: #ffea00;
}

/* Contact popup styles */
.contact-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 30, 40, 0.95);
    padding: 25px;
    border-radius: 15px;
    z-index: 1000;
    max-width: 300px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    display: none;
    border: 1px solid var(--gold);
}

.contact-popup.visible {
    display: block;
    animation: fadeIn 0.5s;
}

.contact-popup p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

.contact-popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.contact-popup-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Warning popup styles */
.warning-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.warning-popup.visible {
    opacity: 1;
    pointer-events: auto;
}

.warning-content {
    background: rgba(30, 30, 40, 0.95);
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid var(--warning-red);
    animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.warning-content h4 {
    color: var(--warning-red);
    font-size: 24px;
    margin-bottom: 15px;
}

.warning-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.warning-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.warning-confirm,
.warning-cancel {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.warning-confirm {
    background: var(--warning-red);
    color: white;
}

.warning-confirm:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.warning-cancel {
    background: rgba(255,255,255,0.1);
    color: white;
}

.warning-cancel:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hypno button styles */
.hypno-btn {
    position: relative;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    padding: 20px;
    background: linear-gradient(45deg, var(--purple), var(--teal));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s;
    animation: pulseGlow 2s infinite;
}

.hypno-text {
    position: relative;
    z-index: 2;
}

.hypno-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 1s;
}

.hypno-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hypno-btn:hover .hypno-circle {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.hypno-btn:active {
    transform: translateY(1px);
}

/* Animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(255,215,0,0.5); }
    50% { box-shadow: 0 0 20px rgba(255,215,0,0.8); }
    100% { box-shadow: 0 0 10px rgba(255,215,0,0.5); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .player-header {
        flex-direction: column;
    }
    
    .player-tabs {
        margin-bottom: 15px;
    }
    
    .player-body {
        flex-direction: column;
    }
    
    .track-title, .track-artist {
        display: inline !important;
    }
    
    .track-artist:before {
        content: " - ";
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .unified-player {
        width: 100%;
        max-width: 100%;
        margin: 20px auto;
        padding: 15px;
    }
    
    .player-now-playing {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    
    .vinyl-container {
        margin: 0 auto;
    }
    
    .mini-player {
        height: 60px;
    }
    
    .mini-player-content {
        padding: 10px;
    }
    
    .mini-cover {
        width: 40px;
        height: 40px;
    }
    
    .mini-controls {
        margin: 0 10px;
    }
    
    .mini-progress-container {
        display: none;
    }
    
    .mini-toggle-btn {
        display: none;
    }
    
    .message-bubble {
        font-size: 13px;
        padding: 8px 12px;
        max-width: 90%;
        width: auto;
        min-width: 200px;
    }
    
    .message-content {
        padding-right: 15px;
    }
    
    .player-messages-container {
        margin-top: 3px;
    }
    
    footer {
        padding-bottom: 80px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .visualizer-container {
        width: 100%;
    }
    
    .hero-content h1 {
        margin-top: 10px;
    }
    
    nav ul li.desktop-only {
        display: none;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    .hero-content p.desktop-only {
        display: none;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .hypno-section {
        padding: 40px 20px;
    }
    
    .hypno-section h3 {
        font-size: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .stat-item {
        width: 50%;
        padding: 15px;
    }
    
    .nav-buttons {
        bottom: 80px;
        right: 10px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .btn-purpose {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-intro {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .vocal-buttons {
        flex-direction: column;
    }
    
    .platforms {
        display: none;
    }
    
    .compact-player {
        margin: 10px 0;
    }
    
    .compact-controls {
        gap: 8px;
    }
    
    .compact-prev-btn,
    .compact-next-btn,
    .compact-play-btn {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }
    
    .compact-play-btn {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .compact-progress {
        height: 3px;
    }
    
    .compact-time {
        font-size: 10px;
        min-width: 35px;
    }

/* Стили для контактов */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(126, 87, 194, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: var(--purple);
}

.info-content h4 {
    margin-bottom: 5px;
    color: var(--gold);
}

.info-content a {
    color: var(--light-text);
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--teal);
}
}