/* ===== Ohio Primetime Basketball — Red / Black / White ===== */

:root {
    --pt-red: #cc0000;
    --pt-red-dark: #990000;
    --pt-red-glow: #ff1a1a;
    --pt-black: #0d0d0d;
    --pt-dark: #141414;
    --pt-darker: #0a0a0a;
    --pt-white: #ffffff;
    --pt-offwhite: #f0f0f0;
    --pt-gray: #999;
    --pt-gray-light: #bbb;
    --pt-card-bg: #1a1a1a;
    --pt-card-border: rgba(204, 0, 0, 0.2);
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--pt-black);
    color: var(--pt-offwhite);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar-pt {
    background: rgba(10, 10, 10, 0.96) !important;
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--pt-red);
    padding: 0.4rem 0;
    transition: padding 0.3s ease;
}

.navbar-pt .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-pt .navbar-brand img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar-pt .brand-text {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pt-white) !important;
    line-height: 1.1;
}

.navbar-pt .brand-text span {
    color: var(--pt-red);
}

.navbar-pt .nav-link {
    color: var(--pt-offwhite) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 0.6rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}

.navbar-pt .nav-link:hover,
.navbar-pt .nav-link.active {
    color: var(--pt-red) !important;
}

.navbar-pt .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--pt-red);
    transition: width 0.25s;
}

.navbar-pt .nav-link:hover::after,
.navbar-pt .nav-link.active::after {
    width: 50%;
}

.navbar-toggler {
    border-color: var(--pt-red) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23cc0000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.3) 40%,
        rgba(10, 10, 10, 0.7) 80%,
        var(--pt-black) 100%
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem;
}

.hero-logo {
    max-width: 240px;
    width: 60%;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 40px rgba(204, 0, 0, 0.35));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(204, 0, 0, 0.35)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 50px rgba(204, 0, 0, 0.5)); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--pt-white);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.8);
}

.hero h1 .text-red {
    color: var(--pt-red);
    -webkit-text-stroke: 1.5px var(--pt-white);
    paint-order: stroke fill;
}

.hero .hero-sub {
    font-size: 1.2rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--pt-gray-light);
    margin-top: 0.5rem;
}

.hero .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--pt-red);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Image Banner Strip ===== */
.image-strip {
    display: flex;
    overflow: hidden;
    height: 200px;
    gap: 0;
}

.image-strip img {
    height: 100%;
    width: auto;
    min-width: 300px;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(20%) brightness(0.85);
    transition: filter 0.3s;
}

.image-strip img:hover {
    filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
    .image-strip { height: 130px; }
    .image-strip img { min-width: 200px; }
}

/* ===== Red Accent Bar / Stats ===== */
.stats-bar {
    background: var(--pt-red);
    padding: 2.5rem 0;
}

.stats-bar .stats-season {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    padding: 0.75rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--pt-white);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ===== Sections ===== */
.section-black { background: var(--pt-black); padding: 5rem 0; }
.section-dark  { background: var(--pt-dark);  padding: 5rem 0; }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--pt-white);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--pt-red);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* ===== Callout Cards ===== */
.callout-card {
    background: var(--pt-card-bg);
    border-radius: 10px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid var(--pt-card-border);
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    position: relative;
    overflow: hidden;
}

.callout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pt-red);
}

.callout-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 0, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(204, 0, 0, 0.1);
}

.callout-card .card-icon {
    width: 56px;
    height: 56px;
    background: var(--pt-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pt-white);
    margin-bottom: 1.2rem;
}

.callout-card h3 {
    color: var(--pt-white);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.callout-card p,
.callout-card li {
    color: var(--pt-gray-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

.callout-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.callout-card ul li {
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
}

.callout-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    background: var(--pt-red);
    border-radius: 50%;
}

.btn-pt {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.6rem 1.75rem;
    background: transparent;
    border: 2px solid var(--pt-red);
    color: var(--pt-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.25s;
}

.btn-pt:hover {
    background: var(--pt-red);
    color: var(--pt-white);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
}

.btn-pt-solid {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background: var(--pt-red);
    color: var(--pt-white) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    transition: all 0.25s;
}

.btn-pt-solid:hover {
    background: var(--pt-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.5);
    color: var(--pt-white) !important;
}

/* ===== Photo Gallery ===== */
.gallery-section {
    background: var(--pt-dark);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.gallery-item:hover::after {
    border-color: var(--pt-red);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 480px) {
    .gallery-item.featured { grid-column: span 1; }
}

/* ===== Full-width Image Break ===== */
.image-break {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-break-collage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.image-break-collage img {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.image-break .overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}

.image-break .overlay-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--pt-white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.image-break .overlay-text h2 .text-red {
    color: var(--pt-red);
    -webkit-text-stroke: 1px var(--pt-white);
    paint-order: stroke fill;
}

.image-break .overlay-text p {
    color: var(--pt-gray-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .image-break { height: 280px; }
    .image-break .overlay-text h2 { font-size: 1.6rem; letter-spacing: 2px; }
}

/* ===== Values Cards ===== */
.value-card {
    background: var(--pt-card-bg);
    border: 1px solid var(--pt-card-border);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pt-red);
    transform: scaleX(0);
    transition: transform 0.35s;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.value-card .v-icon {
    width: 50px;
    height: 50px;
    background: var(--pt-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--pt-white);
}

.value-card h4 {
    color: var(--pt-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.value-card p {
    color: var(--pt-gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FAQ Accordion ===== */
.faq-section .accordion-item {
    background: var(--pt-card-bg);
    border: 1px solid var(--pt-card-border);
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: var(--pt-card-bg);
    color: var(--pt-white);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.1rem 1.4rem;
    box-shadow: none !important;
    border: none;
    transition: font-size 0.25s ease, padding 0.25s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(204, 0, 0, 0.12);
    color: var(--pt-red);
    font-size: 1.2rem;
    padding: 1.3rem 1.4rem;
}

.faq-section .accordion-button::after {
    filter: invert(1);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(0.3) sepia(1) saturate(20) hue-rotate(350deg);
}

.faq-section .accordion-body {
    background: var(--pt-card-bg);
    color: var(--pt-gray-light);
    line-height: 1.8;
    padding: 0.75rem 1.4rem 1.25rem;
    font-size: 0.95rem;
}

/* ===== About ===== */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.about-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.about-hero .overlay-text {
    position: relative;
    z-index: 2;
    padding: 3rem;
    width: 100%;
    background: linear-gradient(to top, var(--pt-black), transparent);
}

.about-hero .overlay-text h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pt-white);
}

.about-content { padding: 4rem 0; }

.about-content p {
    color: var(--pt-gray-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 300px;
}

.about-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.about-mosaic img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ===== Footer ===== */
.footer-pt {
    background: var(--pt-darker);
    border-top: 3px solid var(--pt-red);
    padding: 3rem 0 1.5rem;
}

.footer-pt .footer-logo {
    height: 55px;
    margin-bottom: 1rem;
}

.footer-pt h5 {
    color: var(--pt-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-pt p { color: var(--pt-gray); font-size: 0.9rem; }

.footer-pt a {
    color: var(--pt-gray);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-pt a:hover {
    color: var(--pt-red);
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p { color: var(--pt-gray); font-size: 0.8rem; margin: 0; }

.footer-login-link {
    display: inline;
    color: var(--pt-gray) !important;
    font-size: 0.8rem;
    padding: 0 !important;
    transition: color 0.2s;
}

.footer-login-link:hover {
    color: var(--pt-red) !important;
    padding-left: 0 !important;
}

/* Social */
.social-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.social-links a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--pt-gray) !important;
    padding: 0 !important;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    border-color: var(--pt-red);
    color: var(--pt-red) !important;
    background: rgba(204, 0, 0, 0.1);
    transform: translateY(-3px);
    padding-left: 0 !important;
}

/* ===== Lightbox ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(204, 0, 0, 0.15);
}

/* ===== Scroll-to-top ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--pt-red);
    color: var(--pt-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.scroll-top.visible { opacity: 1; }

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.5);
}

/* ===== Page Header (for inner pages) ===== */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-header-collage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.page-header-collage img {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) grayscale(30%);
}

.page-header .page-header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, var(--pt-black), transparent);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pt-white);
    margin: 0;
}

.page-header h1 .text-red {
    color: var(--pt-red);
    -webkit-text-stroke: 1px var(--pt-white);
    paint-order: stroke fill;
}

/* ===== Identity / Login Page ===== */
.identity-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: 70vh;
}

.identity-page h1,
.identity-page h2 {
    color: var(--pt-white);
}

.identity-page .form-label {
    color: var(--pt-gray-light);
}

.identity-page .form-control {
    background: var(--pt-card-bg);
    border: 1px solid var(--pt-card-border);
    color: var(--pt-offwhite);
}

.identity-page .form-control:focus {
    background: var(--pt-dark);
    color: var(--pt-white);
    border-color: var(--pt-red);
}

.identity-page .btn-primary {
    background: var(--pt-red);
    border-color: var(--pt-red);
}

.identity-page .btn-primary:hover {
    background: var(--pt-red-dark);
    border-color: var(--pt-red-dark);
}

.register-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: rgba(204, 0, 0, 0.08);
    border: 1px solid var(--pt-card-border);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--pt-gray-light);
}

.register-note a {
    color: var(--pt-red);
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover {
    text-decoration: underline;
}

/* ===== Contact Page ===== */
.contact-method {
    background: var(--pt-card-bg);
    border: 1px solid var(--pt-card-border);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--pt-red);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.contact-method .contact-icon {
    width: 72px;
    height: 72px;
    background: var(--pt-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pt-white);
    margin: 0 auto 1.5rem;
}

.contact-method h3 {
    color: var(--pt-white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-method .contact-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pt-red);
    -webkit-text-stroke: 0.5px var(--pt-white);
    paint-order: stroke fill;
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.contact-method .contact-value:hover {
    color: var(--pt-red-dark);
}

.contact-method p {
    color: var(--pt-gray-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact-note {
    background: rgba(204, 0, 0, 0.08);
    border: 1px solid var(--pt-card-border);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    color: var(--pt-gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-note i {
    color: var(--pt-red);
    margin-right: 0.4rem;
}

/* ===== Social Media Page ===== */
.social-platform-card {
    background: var(--pt-card-bg);
    border: 1px solid var(--pt-card-border);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.social-platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--pt-red);
    text-decoration: none;
}

.social-platform-header i {
    font-size: 1.8rem;
    color: var(--pt-white);
    flex-shrink: 0;
}

.social-platform-header div {
    display: flex;
    flex-direction: column;
}

.social-platform-header .platform-name {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pt-white);
    line-height: 1;
}

.social-platform-header .platform-handle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.2rem;
}

.social-platform-body {
    padding: 1.5rem;
}

.social-platform-body p {
    color: var(--pt-gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.social-embed-container {
    position: relative;
    width: 100%;
    background: var(--pt-darker);
    border-radius: 6px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-embed-container iframe {
    width: 100%;
    border: none;
    display: block;
}

.social-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: transparent;
    border: 2px solid var(--pt-red);
    color: var(--pt-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s;
    margin-top: 1rem;
}

.social-follow-btn:hover {
    background: var(--pt-red);
    color: var(--pt-white);
    box-shadow: 0 4px 20px rgba(204,0,0,0.4);
}

.social-link-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--pt-darker);
    border: 1px solid var(--pt-card-border);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 0.25rem;
}

.social-preview-icon {
    font-size: 2.5rem;
    color: var(--pt-red);
    flex-shrink: 0;
}

.social-link-preview span {
    color: var(--pt-gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .hero .hero-sub { font-size: 1rem; letter-spacing: 5px; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2rem; letter-spacing: 2px; }
    .hero .hero-sub { font-size: 0.75rem; letter-spacing: 3px; }
    .hero-logo { max-width: 160px; }
    .section-title { font-size: 1.5rem; letter-spacing: 2px; }
    .section-black, .section-dark, .gallery-section { padding: 3rem 0; }
    .page-header { min-height: 220px; }
    .page-header h1 { font-size: 1.6rem; }
}

/* ===== Utility ===== */
.text-red { color: var(--pt-red) !important; }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--pt-black), 0 0 0 0.25rem var(--pt-red);
}