.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo-mark,
.navbar-logo-mark .custom-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo-mark img,
.navbar-logo-mark .custom-logo-link img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar-logo-text {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-menu a:hover,
.navbar-menu .current-menu-item > a,
.navbar-menu .current_page_item > a {
    color: #f59e0b;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.75rem;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.is-open .navbar-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .navbar-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .navbar-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 3rem 0;
    margin-top: 4rem;
}

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

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.site-footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.site-footer-copy,
.site-footer-contact,
.site-footer-links,
.site-footer-legal {
    color: #9ca3af;
}

.site-footer-heading {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-links li {
    margin-bottom: 0.5rem;
}

.site-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer-socials a,
.site-footer-links a {
    color: inherit;
}

.site-footer-legal {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.youbble-notice {
    max-width: 840px;
    margin: 0 auto 2rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    outline: none;
}

.youbble-notice-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #d1fae5;
}

.youbble-notice-warning {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fde68a;
}

.youbble-notice-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #fecaca;
}

.youbble-form-grid {
    display: grid;
    gap: 0.85rem;
}

.youbble-form-fallback {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fde68a;
}

.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="file"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #f59e0b;
}

.wpcf7-form label {
    display: block;
    color: #d1d5db;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    background: #f59e0b;
    color: #000;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wpcf7 form .wpcf7-response-output {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.wpcf7 form.sent .wpcf7-response-output {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.landing-page-shell {
    min-height: 100vh;
    background: #0a0a0a;
}

.landing-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.landing-content {
    max-width: 720px;
}

.logo-container {
    margin-bottom: 3rem;
    position: relative;
}

.animated-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.logo-vinyl {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #1a1a1a 30%, #2d2d2d 60%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.5);
}

.logo-vinyl::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 2deg,
        rgba(0, 0, 0, 0.1) 2deg,
        rgba(0, 0, 0, 0.1) 4deg
    );
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.landing-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.accent {
    color: #f59e0b;
}

.landing-tagline {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .navbar-toggle {
        display: inline-flex;
    }

    .navbar-menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0.75rem;
        background: rgba(15, 15, 15, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1rem;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .navbar-menu li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-menu a {
        display: block;
        padding: 0.9rem 0.75rem;
        border-radius: 0.75rem;
    }

    .navbar.is-open .navbar-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .animated-logo,
    .logo-vinyl {
        width: 150px;
        height: 150px;
    }

    .logo-center {
        width: 60px;
        height: 60px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }
}

.release-overview p {
    margin: 0 0 0.85rem;
}

.release-overview p:last-child {
    margin-bottom: 0;
}

.release-overview h2,
.release-overview h3,
.release-overview h4 {
    color: #fbbf24;
    font-weight: 700;
    margin: 1.2rem 0 0.5rem;
    line-height: 1.3;
}

.release-overview h2 { font-size: 1.15rem; }
.release-overview h3 { font-size: 1.05rem; }
.release-overview h4 { font-size: 0.98rem; }

.release-overview ul,
.release-overview ol {
    margin: 0 0 0.85rem 1.25rem;
    padding: 0;
}

.release-overview li {
    margin: 0 0 0.35rem;
}

.release-overview blockquote {
    margin: 0.75rem 0;
    padding: 0.6rem 1rem;
    border-left: 3px solid rgba(245, 158, 11, 0.55);
    background: rgba(245, 158, 11, 0.06);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
}

.release-overview blockquote p {
    margin: 0;
}

.release-overview strong {
    color: #ffffff;
}

.release-overview em {
    color: #e5e7eb;
}

.release-overview a {
    color: #f59e0b;
    text-decoration: underline;
}
