:root {
    --bg-color: #FDFAF6;
    --text-main: #212529;
    --text-muted: #6C757D;
    --accent-color: #00E5FF;
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.05);
    --font-family: 'Outfit', 'Pretendard', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-color); color: var(--text-main); font-family: var(--font-family); line-height: 1.6; overflow-x: hidden; position: relative; -webkit-font-smoothing: antialiased; }

/* Custom Cursor Defaults */
body, a, button, .hover-ripple { cursor: none !important; }

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.glassmorphism { background: rgba(253, 250, 246, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border); }
.glass-card { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-soft); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.glass-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }

.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 1.2rem 2rem; }
.site-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.main-navigation ul { list-style: none; display: flex; gap: 2.5rem; }
.main-navigation a { font-weight: 500; font-size: 1.05rem; opacity: 0.7; }
.main-navigation a:hover { opacity: 1; }

.btn { display: inline-block; padding: 1rem 2.2rem; border-radius: 50px; font-weight: 600; font-size: 1.05rem; cursor: none; border: none; }
.btn-primary { background: #111; color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-secondary { background: rgba(255, 255, 255, 0.5); color: var(--text-main); border: 1px solid rgba(0,0,0,0.1); backdrop-filter: blur(5px); }

.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 0 5%; }
.hero-content { z-index: 10; max-width: 750px; padding-top: 80px; }
.hero-badge { display: inline-block; padding: 0.6rem 1.2rem; background: rgba(255,255,255,0.7); border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.9); backdrop-filter: blur(10px); }
.hero-title { font-size: 4.5rem; line-height: 1.15; font-weight: 700; letter-spacing: -1.5px; margin-bottom: 1.5rem; word-break: keep-all; }
.highlight-text { background: linear-gradient(135deg, #abb2c2, #536980, #abb2c2); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 6s linear infinite; }
@keyframes shine { to { background-position: 200% center; } }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3.5rem; word-break: keep-all; }
.hero-buttons { display: flex; gap: 1.2rem; }

.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; z-index: 1; pointer-events: none; }
.glass-sphere { width: 450px; height: 450px; border-radius: 50%; background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(240, 244, 248, 0.1)); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.7); position: absolute; top: 5%; right: 0; box-shadow: inset 0 0 80px rgba(255,255,255,0.8), 0 30px 60px rgba(0,0,0,0.03); }
.glass-orb { width: 200px; height: 200px; border-radius: 50%; background: linear-gradient(135deg, #d2dde6 0%, #e8e2d8 100%); position: absolute; bottom: 15%; left: 5%; z-index: -1; filter: blur(15px); opacity: 0.8; }

.section-title { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.section-desc { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 4rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
.feature-card p { color: var(--text-muted); font-size: 1.05rem; }

.ambient-shape { position: fixed; border-radius: 50%; filter: blur(100px); z-index: -2; opacity: 0.6; pointer-events: none; }
.shape-1 { width: 60vw; height: 60vw; background: #f1f5f9; top: -20vh; right: -20vw; }
.shape-2 { width: 50vw; height: 50vw; background: #fdf6ec; bottom: -15vh; left: -15vw; }
.shape-3 { width: 40vw; height: 40vw; background: #eef2f6; top: 30vh; left: 20vw; }

.site-footer { padding: 5rem 2rem 3rem; background: transparent; border-top: 1px solid var(--glass-border); position: relative; z-index: 10; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.footer-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.site-info { color: var(--text-muted); font-size: 0.9rem; }
.fade-up { visibility: hidden; }

/* ========================================================================= */
/* MUSIC & VIDEO THEME EXTENSIONS */
/* ========================================================================= */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #000;
}
.video-wrapper iframe, .video-wrapper object, .video-wrapper embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.music-genre {
    display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--text-main);
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 0.8rem; border: 1px solid var(--glass-border); text-transform: uppercase; letter-spacing: 1px;
}

.thumbnail-wrapper { display: block; cursor: none; }
.thumbnail-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: opacity 0.3s ease, transform 0.5s ease; }
.thumbnail-wrapper:hover img { opacity: 0.7; transform: scale(1.05); }
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 2; pointer-events: none; }
.thumbnail-wrapper:hover .play-overlay { background: #111; color: #fff; transform: translate(-50%, -50%) scale(1.15); }
.play-icon { width: 24px; height: 24px; margin-left: 4px; }

.wp-block-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 2rem; margin-bottom: 2rem; }

/* Pagination Styles */
.pagination-wrapper .page-numbers {
    display: inline-block; padding: 0.8rem 1.2rem; margin: 0 0.3rem;
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; font-weight: 600; transition: all 0.3s;
}
.pagination-wrapper .page-numbers.current, .pagination-wrapper .page-numbers:hover {
    background: var(--text-main); color: #fff; transform: translateY(-2px);
}

.social-icons { display: flex; gap: 0.5rem; }
.social-btn { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; padding: 0.4rem 0.8rem; border-radius: 8px; background: rgba(0,0,0,0.05); }
.social-btn:hover { background: rgba(0,0,0,0.1); }

/* ========================================================================= */
/* CUSTOM CURSOR & RIPPLE EFFECT */
/* ========================================================================= */
.cursor-dot, .cursor-circle {
    position: fixed; top: -100px; left: -100px; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; z-index: 9999;
}
.cursor-dot { width: 6px; height: 6px; background-color: var(--text-main); transition: width 0.2s, height 0.2s, background-color 0.2s; }
.cursor-circle { width: 40px; height: 40px; border: 1px solid var(--text-muted); background-color: rgba(255,255,255,0.1); backdrop-filter: blur(2px); transition: width 0.2s, height 0.2s, border-color 0.2s, transform 0.1s ease-out; }

.cursor-hover .cursor-dot { width: 0; height: 0; }
.cursor-hover .cursor-circle { width: 80px; height: 80px; background-color: rgba(255,255,255,0.5); border-color: rgba(0,0,0,0.2); }

/* Click Ripple effect container */
.ripple-element {
    position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-anim 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); background-color: rgba(255,255,255,0.6); pointer-events: none; z-index: 10;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}
.hover-ripple { position: relative; overflow: hidden; /* For ripples */ }

/* Responsive */
@media (max-width: 768px) {
    body, a, button, .hover-ripple { cursor: auto !important; }
    .cursor-dot, .cursor-circle { display: none !important; }
    .hero-title { font-size: 3rem; }
    .hero-visual { width: 100%; opacity: 0.3; z-index: 0; }
    .hero-buttons { flex-direction: column; }
    .main-navigation { display: none; }
    .footer-container { flex-direction: column; align-items: flex-start; gap: 2rem; }
}
