/*!
Theme Name: storiamelodia
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: storiamelodia
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

storiamelodia is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

body {
	margin: 0;
	padding: 0;
}

#ab-module,
#ab-module *,
#ab-module *::before,
#ab-module *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

#ab-module {
	--ab-fuchsia: #ff0080;
	--ab-fuchsia-light: #ff40a0;
	--ab-fuchsia-dark: #cc0066;
	--ab-purple-dark: #1a0a2e;
	--ab-purple-mid: #2d1b4e;
	--ab-purple-light: #4a1d6b;
	--ab-violet: #6b21a8;
	--ab-white: #ffffff;
	--ab-white-90: rgba(255, 255, 255, 0.9);
	--ab-white-70: rgba(255, 255, 255, 0.7);
	--ab-white-50: rgba(255, 255, 255, 0.5);
	--ab-black: #0a0a0a;
	--ab-font-main: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Yu Gothic', sans-serif;
	--ab-transition: 0.3s ease;
	--ab-transition-slow: 0.5s ease;

	font-family: var(--ab-font-main);
	color: var(--ab-white);
	background: linear-gradient(135deg, var(--ab-purple-dark) 0%, var(--ab-purple-mid) 50%, var(--ab-purple-light) 100%);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

#ab-module .ab-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Particles */
#ab-module .ab-particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

#ab-module .ab-particle {
	position: absolute;
	background: var(--ab-fuchsia);
	border-radius: 50%;
	opacity: 0.6;
	animation: ab-float 15s infinite ease-in-out;
}

@keyframes ab-float {
	0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
	10% { opacity: 0.6; }
	90% { opacity: 0.6; }
	100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Navigation */
#ab-module .ab-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background: linear-gradient(180deg, rgba(26, 10, 46, 0.95) 0%, rgba(26, 10, 46, 0) 100%);
	backdrop-filter: blur(10px);
}

#ab-module .ab-nav-logo {
	z-index: 1001;
}

#ab-module .ab-logo-img {
	height: 40px;
	width: auto;
}

#ab-module .ab-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

#ab-module .ab-nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--ab-white);
	border-radius: 2px;
	transition: var(--ab-transition);
}

#ab-module .ab-nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

#ab-module .ab-nav-menu a {
	color: var(--ab-white);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: var(--ab-transition);
	position: relative;
}

#ab-module .ab-nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--ab-fuchsia);
	transition: var(--ab-transition);
}

#ab-module .ab-nav-menu a:hover,
#ab-module .ab-nav-menu a:focus {
	color: var(--ab-fuchsia);
}

#ab-module .ab-nav-menu a:hover::after,
#ab-module .ab-nav-menu a:focus::after {
	width: 100%;
}

/* Hero Section */
#ab-module .ab-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

#ab-module .ab-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

#ab-module .ab-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.1s ease-out;
}

.ab-hero-img--desktop {
	display: none;
}

.ab-hero-img--tablet {
	display: none;
}


@media screen and (min-width: 1280px) {
	.ab-hero-img--tablet {
		display: none;
	}

	.ab-hero-img--desktop {
		display: block;
	}
}



#ab-module .ab-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
	rgba(26, 10, 46, 0.3) 0%,
	rgba(26, 10, 46, 0.1) 50%,
	rgba(26, 10, 46, 0.8) 100%
	);
}

#ab-module .ab-hero-logo {
	position: absolute;
	top: 15%;
	left: 5%;
	z-index: 10;
	animation: ab-logo-float 6s ease-in-out infinite;
}

#ab-module .ab-hero-logo img {
	width: clamp(200px, 35vw, 450px);
	height: auto;
	filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5)) drop-shadow(2px 2px 0 white) drop-shadow(-2px -2px 0 white);
}

@keyframes ab-logo-float {
	0%, 100% { transform: translateY(0) rotate(-2deg); }
	50% { transform: translateY(-15px) rotate(0deg); }
}

#ab-module .ab-glow-orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 5;
}

#ab-module .ab-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	animation: ab-pulse 4s ease-in-out infinite;
}

#ab-module .ab-orb-1 {
	width: 300px;
	height: 300px;
	background: var(--ab-fuchsia);
	top: 20%;
	right: 10%;
	animation-delay: 0s;
}

#ab-module .ab-orb-2 {
	width: 200px;
	height: 200px;
	background: var(--ab-violet);
	bottom: 30%;
	left: 20%;
	animation-delay: 1.5s;
}

#ab-module .ab-orb-3 {
	width: 150px;
	height: 150px;
	background: var(--ab-fuchsia-light);
	top: 40%;
	left: 50%;
	animation-delay: 3s;
}

@keyframes ab-pulse {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.1); }
}

/* Hero Content Section */
#ab-module .ab-hero-content {
	position: relative;
	z-index: 10;
	padding: 6rem 0;
	text-align: center;
	background: linear-gradient(180deg, var(--ab-purple-dark) 0%, var(--ab-purple-mid) 100%);
}

#ab-module .ab-hero-text {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
	animation: ab-fade-in 1s ease-out;
}

@keyframes ab-fade-in {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

#ab-module .ab-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 700;
	color: var(--ab-fuchsia);
	margin-bottom: 0.5rem;
	text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

#ab-module .ab-subtitle {
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	color: var(--ab-white);
	margin-bottom: 1rem;
	font-weight: 300;
}

#ab-module .ab-description {
	font-size: 1.1rem;
	color: var(--ab-white-70);
	margin-bottom: 2.5rem;
}

#ab-module .ab-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

#ab-module .ab-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: var(--ab-transition);
	cursor: pointer;
	border: none;
	font-family: inherit;
	position: relative;
	overflow: hidden;
}

#ab-module .ab-btn-primary {
	background: linear-gradient(135deg, var(--ab-fuchsia) 0%, var(--ab-fuchsia-dark) 100%);
	color: var(--ab-white);
	box-shadow: 0 4px 20px rgba(255, 0, 128, 0.4);
}

#ab-module .ab-btn-primary:hover,
#ab-module .ab-btn-primary:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(255, 0, 128, 0.6);
}

#ab-module .ab-btn-secondary {
	background: transparent;
	color: var(--ab-white);
	border: 2px solid var(--ab-fuchsia);
}

#ab-module .ab-btn-secondary:hover,
#ab-module .ab-btn-secondary:focus {
	background: var(--ab-fuchsia);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(255, 0, 128, 0.4);
}

#ab-module .ab-btn:focus {
	outline: 2px solid var(--ab-fuchsia-light);
	outline-offset: 3px;
}

/* About Section */
#ab-module .ab-about {
	position: relative;
	z-index: 10;
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--ab-purple-mid) 0%, var(--ab-purple-dark) 100%);
}

#ab-module .ab-section-title {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	margin-bottom: 3rem;
	text-align: center;
}

#ab-module .ab-title-jp {
	color: var(--ab-fuchsia);
	display: block;
	font-size: 0.9em;
	margin-bottom: 0.25rem;
}

#ab-module .ab-about-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: center;
}

#ab-module .ab-about-image img {
	width: 100%;
	max-width: 300px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(255, 0, 128, 0.3);
}

#ab-module .ab-about-text {
	color: var(--ab-white-90);
}

#ab-module .ab-about-text p {
	margin-bottom: 0.75rem;
}

#ab-module .ab-text-jp {
	color: var(--ab-white-70);
}

/* Series Gallery */
#ab-module .ab-series {
	position: relative;
	z-index: 10;
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--ab-purple-dark) 0%, var(--ab-purple-mid) 100%);
}

#ab-module .ab-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

#ab-module .ab-gallery-item {
	cursor: pointer;
	transition: var(--ab-transition);
}

#ab-module .ab-gallery-img-wrapper {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	aspect-ratio: 3/4;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#ab-module .ab-gallery-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--ab-transition);
}

#ab-module .ab-gallery-item:hover .ab-gallery-img-wrapper img,
#ab-module .ab-gallery-item:focus .ab-gallery-img-wrapper img {
	transform: scale(1.05);
}

#ab-module .ab-gallery-item:hover .ab-gallery-img-wrapper,
#ab-module .ab-gallery-item:focus .ab-gallery-img-wrapper {
	box-shadow: 0 0 0 3px var(--ab-fuchsia), 0 10px 40px rgba(255, 0, 128, 0.4);
}

#ab-module .ab-gallery-title {
	text-align: center;
	margin-top: 1rem;
	font-size: 1rem;
	color: var(--ab-white-90);
	font-weight: 500;
}

#ab-module .ab-subseries-badge {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: var(--ab-fuchsia);
	color: var(--ab-white);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
}

#ab-module .ab-gallery-item:focus {
	outline: none;
}

#ab-module .ab-gallery-item:focus .ab-gallery-img-wrapper {
	box-shadow: 0 0 0 3px var(--ab-fuchsia-light), 0 10px 40px rgba(255, 0, 128, 0.4);
}

/* Sub-Series View */
#ab-module .ab-subseries-view {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: linear-gradient(135deg, var(--ab-purple-dark) 0%, var(--ab-purple-mid) 50%, var(--ab-purple-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--ab-transition-slow);
}

#ab-module .ab-subseries-view.ab-active {
	opacity: 1;
	visibility: visible;
}

#ab-module .ab-subseries-container {
	width: 100%;
	max-width: 800px;
	padding: 2rem;
	text-align: center;
}

#ab-module .ab-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	color: var(--ab-white);
	font-size: 1rem;
	cursor: pointer;
	margin-bottom: 2rem;
	padding: 0.5rem 1rem;
	border-radius: 30px;
	transition: var(--ab-transition);
	font-family: inherit;
}

#ab-module .ab-back-btn:hover,
#ab-module .ab-back-btn:focus {
	background: rgba(255, 255, 255, 0.1);
	color: var(--ab-fuchsia);
}

#ab-module .ab-back-btn:focus {
	outline: 2px solid var(--ab-fuchsia);
	outline-offset: 2px;
}

#ab-module .ab-subseries-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Image Slider */
#ab-module .ab-slider {
	position: fixed;
	inset: 0;
	z-index: 3000;
	background: linear-gradient(135deg, var(--ab-purple-dark) 0%, var(--ab-purple-mid) 50%, var(--ab-purple-light) 100%);
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: var(--ab-transition-slow);
}

#ab-module .ab-slider.ab-active {
	opacity: 1;
	visibility: visible;
}

#ab-module .ab-slider-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem;
	background: rgba(26, 10, 46, 0.8);
	backdrop-filter: blur(10px);
}

#ab-module .ab-slider-title {
	font-size: 1.25rem;
	color: var(--ab-white);
}

#ab-module .ab-slider-title .ab-title-jp {
	color: var(--ab-fuchsia);
	margin-right: 0.5rem;
}

#ab-module .ab-slider-back,
#ab-module .ab-slider-close {
	background: none;
	border: none;
	color: var(--ab-white);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: var(--ab-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

#ab-module .ab-slider-back:hover,
#ab-module .ab-slider-back:focus,
#ab-module .ab-slider-close:hover,
#ab-module .ab-slider-close:focus {
	background: rgba(255, 255, 255, 0.1);
	color: var(--ab-fuchsia);
}

#ab-module .ab-slider-back:focus,
#ab-module .ab-slider-close:focus {
	outline: 2px solid var(--ab-fuchsia);
	outline-offset: 2px;
}

#ab-module .ab-slider-content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 2rem;
	overflow: hidden;
}

#ab-module .ab-slider-images {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#ab-module .ab-slider-images img {
	max-width: 90%;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

#ab-module .ab-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 0, 128, 0.3);
	border: none;
	color: var(--ab-white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--ab-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

#ab-module .ab-slider-prev {
	left: 1rem;
}

#ab-module .ab-slider-next {
	right: 1rem;
}

#ab-module .ab-slider-nav:hover,
#ab-module .ab-slider-nav:focus {
	background: var(--ab-fuchsia);
	transform: translateY(-50%) scale(1.1);
}

#ab-module .ab-slider-nav:focus {
	outline: 2px solid var(--ab-fuchsia-light);
	outline-offset: 3px;
}

#ab-module .ab-slider-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

#ab-module .ab-slider-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
}

#ab-module .ab-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--ab-white-50);
	border: none;
	cursor: pointer;
	transition: var(--ab-transition);
	padding: 0;
}

#ab-module .ab-slider-dot.ab-active,
#ab-module .ab-slider-dot:hover,
#ab-module .ab-slider-dot:focus {
	background: var(--ab-fuchsia);
	transform: scale(1.2);
}

#ab-module .ab-slider-dot:focus {
	outline: 2px solid var(--ab-fuchsia-light);
	outline-offset: 2px;
}

#ab-module .ab-slider-footer {
	padding: 1rem 2rem;
	background: rgba(26, 10, 46, 0.8);
	text-align: center;
}

#ab-module .ab-footer-copyright-mini {
	font-size: 0.85rem;
	color: var(--ab-white-70);
}

/* Soundtrack Section */
#ab-module .ab-soundtrack {
	position: relative;
	z-index: 10;
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--ab-purple-mid) 0%, var(--ab-black) 100%);
}

#ab-module .ab-tracks {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 700px;
	margin: 0 auto;
}

#ab-module .ab-track {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	transition: var(--ab-transition);
}

#ab-module .ab-track:hover {
	background: rgba(255, 255, 255, 0.1);
}

#ab-module .ab-track-info {
	flex-shrink: 0;
	min-width: 150px;
}

#ab-module .ab-track-title {
	font-size: 1.1rem;
	color: var(--ab-fuchsia);
	margin-bottom: 0.25rem;
}

#ab-module .ab-track-artist {
	font-size: 0.9rem;
	color: var(--ab-white-70);
}

#ab-module .ab-track-player {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 1rem;
}

#ab-module .ab-play-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--ab-fuchsia);
	border: none;
	color: var(--ab-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--ab-transition);
	flex-shrink: 0;
}

#ab-module .ab-play-btn:hover,
#ab-module .ab-play-btn:focus {
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

#ab-module .ab-play-btn:focus {
	outline: 2px solid var(--ab-fuchsia-light);
	outline-offset: 3px;
}

#ab-module .ab-play-btn .ab-icon-pause {
	display: none;
}

#ab-module .ab-play-btn.ab-playing .ab-icon-play {
	display: none;
}

#ab-module .ab-play-btn.ab-playing .ab-icon-pause {
	display: block;
}

#ab-module .ab-waveform {
	display: flex;
	align-items: center;
	gap: 3px;
	height: 30px;
}

#ab-module .ab-waveform span {
	width: 4px;
	height: 10px;
	background: var(--ab-white-50);
	border-radius: 2px;
	transition: var(--ab-transition);
}

#ab-module .ab-track.ab-playing .ab-waveform span {
	animation: ab-wave 0.5s ease-in-out infinite alternate;
	background: var(--ab-fuchsia);
}

#ab-module .ab-waveform span:nth-child(1) { animation-delay: 0s; }
#ab-module .ab-waveform span:nth-child(2) { animation-delay: 0.1s; }
#ab-module .ab-waveform span:nth-child(3) { animation-delay: 0.2s; }
#ab-module .ab-waveform span:nth-child(4) { animation-delay: 0.3s; }
#ab-module .ab-waveform span:nth-child(5) { animation-delay: 0.4s; }
#ab-module .ab-waveform span:nth-child(6) { animation-delay: 0.5s; }
#ab-module .ab-waveform span:nth-child(7) { animation-delay: 0.4s; }
#ab-module .ab-waveform span:nth-child(8) { animation-delay: 0.3s; }
#ab-module .ab-waveform span:nth-child(9) { animation-delay: 0.2s; }
#ab-module .ab-waveform span:nth-child(10) { animation-delay: 0.1s; }

@keyframes ab-wave {
	from { height: 10px; }
	to { height: 25px; }
}

#ab-module .ab-progress-bar {
	flex: 1;
	height: 6px;
	background: var(--ab-white-50);
	border-radius: 3px;
	overflow: hidden;
}

#ab-module .ab-progress {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--ab-fuchsia) 0%, var(--ab-fuchsia-light) 100%);
	border-radius: 3px;
	transition: width 0.1s linear;
}

/* Contact Section */
#ab-module .ab-contact {
	position: relative;
	z-index: 10;
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--ab-black) 0%, var(--ab-purple-dark) 100%);
}

#ab-module .ab-form {
	max-width: 600px;
	margin: 0 auto;
}

#ab-module .ab-form-group {
	margin-bottom: 1.5rem;
}

#ab-module .ab-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--ab-white-90);
	font-size: 0.95rem;
}

#ab-module .ab-input,
#ab-module .ab-textarea {
	width: 100%;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: var(--ab-white);
	font-size: 1rem;
	font-family: inherit;
	transition: var(--ab-transition);
}

#ab-module .ab-input:focus,
#ab-module .ab-textarea:focus {
	outline: none;
	border-color: var(--ab-fuchsia);
	box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.2);
}

#ab-module .ab-input::placeholder,
#ab-module .ab-textarea::placeholder {
	color: var(--ab-white-50);
}

#ab-module .ab-textarea {
	resize: vertical;
	min-height: 120px;
}

#ab-module .ab-btn-submit {
	width: 100%;
	padding: 1.25rem;
	background: linear-gradient(135deg, var(--ab-fuchsia) 0%, var(--ab-fuchsia-dark) 100%);
	color: var(--ab-white);
	font-size: 1.1rem;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

#ab-module .ab-btn-submit:hover,
#ab-module .ab-btn-submit:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(255, 0, 128, 0.5);
}

#ab-module .ab-btn-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: scale(0);
	animation: ab-ripple 0.6s linear;
	pointer-events: none;
}

@keyframes ab-ripple {
	to { transform: scale(4); opacity: 0; }
}

/* Social Links */
#ab-module .ab-social {
	position: relative;
	z-index: 10;
	padding: 3rem 0;
	background: var(--ab-purple-dark);
}

#ab-module .ab-social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

#ab-module .ab-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--ab-white);
	transition: var(--ab-transition);
}

#ab-module .ab-social-link:hover,
#ab-module .ab-social-link:focus {
	background: var(--ab-fuchsia);
	transform: scale(1.15);
	box-shadow: 0 0 25px rgba(255, 0, 128, 0.6);
}

#ab-module .ab-social-link:focus {
	outline: 2px solid var(--ab-fuchsia-light);
	outline-offset: 3px;
}

/* Footer */
#ab-module .ab-footer {
	position: relative;
	z-index: 10;
	padding: 4rem 0 2rem;
	background: var(--ab-black);
}

#ab-module .ab-footer-content {
	max-width: 900px;
	margin: 0 auto;
}

#ab-module .ab-footer-copyright {
	font-size: 0.85rem;
	color: var(--ab-white-70);
	line-height: 1.8;
	margin-bottom: 2rem;
}

#ab-module .ab-copyright-jp {
	margin-bottom: 0.5rem;
}

#ab-module .ab-copyright-en {
	margin-bottom: 0.5rem;
}

#ab-module .ab-copyright-list {
	list-style: none;
	padding-left: 1rem;
	margin: 0.5rem 0;
}

#ab-module .ab-copyright-list li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.25rem;
}

#ab-module .ab-copyright-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--ab-fuchsia);
}

#ab-module .ab-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--ab-white-50);
	font-size: 0.9rem;
}

/* Scroll Animations */
#ab-module .ab-fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

#ab-module .ab-fade-up.ab-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	#ab-module .ab-nav-toggle {
		display: flex;
	}

	#ab-module .ab-nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		max-width: 300px;
		height: 100vh;
		background: var(--ab-purple-dark);
		flex-direction: column;
		padding: 5rem 2rem;
		gap: 1.5rem;
		transition: var(--ab-transition);
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	}

	#ab-module .ab-nav-menu.ab-open {
		right: 0;
	}

	#ab-module .ab-nav-toggle.ab-open span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	#ab-module .ab-nav-toggle.ab-open span:nth-child(2) {
		opacity: 0;
	}

	#ab-module .ab-nav-toggle.ab-open span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	#ab-module .ab-about-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	#ab-module .ab-about-image {
		order: -1;
		margin-bottom: 2rem;
	}

	#ab-module .ab-about-image img {
		margin: 0 auto;
	}

	#ab-module .ab-track {
		flex-direction: column;
		text-align: center;
	}

	#ab-module .ab-track-player {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
	}

	#ab-module .ab-waveform {
		display: none;
	}

	#ab-module .ab-subseries-grid {
		grid-template-columns: 1fr;
		max-width: 300px;
	}

	#ab-module .ab-slider-nav {
		width: 40px;
		height: 40px;
	}

	#ab-module .ab-slider-prev {
		left: 0.5rem;
	}

	#ab-module .ab-slider-next {
		right: 0.5rem;
	}
}

@media (max-width: 480px) {
	#ab-module .ab-hero-logo img {
		width: clamp(150px, 50vw, 250px);
	}

	#ab-module .ab-cta-group {
		flex-direction: column;
	}

	#ab-module .ab-btn {
		width: 100%;
	}

	#ab-module .ab-gallery-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	#ab-module *,
	#ab-module *::before,
	#ab-module *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Body scroll lock when slider is open */
body.ab-no-scroll {
	overflow: hidden;
}

