/* ═══════════════════════════════════════════
   GuitarTwitt Homepage — Scoped Styles
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gt-dark:        #0d0b1e;
    --gt-dark2:       #12103a;
    --gt-mid:         #1a1744;
    --gt-card:        rgba(255,255,255,0.05);
    --gt-card-border: rgba(255,255,255,0.09);
    --gt-card-hover:  rgba(255,255,255,0.09);
    --gt-accent:      #f59e0b;
    --gt-accent-h:    #d97706;
    --gt-pink:        #db2777;
    --gt-pink-h:      #be185d;
    --gt-purple:      #7c3aed;
    --gt-text:        #f1f5f9;
    --gt-muted:       rgba(255,255,255,0.5);
    --gt-border:      rgba(255,255,255,0.09);
    --gt-radius:      14px;
    --gt-shadow:      0 4px 32px rgba(0,0,0,0.35);
    --gt-shadow-h:    0 8px 48px rgba(0,0,0,0.55);
    --gt-max-w:       1200px;
}

/* Nullify the empty GeneratePress page containers we manually closed */
body.gt-homepage #page,
body.gt-homepage .site-content {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    border: none !important;
}

body.gt-homepage {
    font-family: 'Outfit', sans-serif;
    background: var(--gt-dark);
    color: var(--gt-text);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ── HERO ── */
.gt-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0b1e 0%, #1e1755 45%, #2d1b6a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.gt-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(245,158,11,0.14) 0%, transparent 65%);
    top: -150px; right: -120px;
    pointer-events: none;
    animation: gt-orb-drift 12s ease-in-out infinite alternate;
}
.gt-hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
    bottom: -80px; left: -80px;
    pointer-events: none;
    animation: gt-orb-drift 15s ease-in-out infinite alternate-reverse;
}

/* Bokeh particles */
.gt-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.gt-hero-particles span {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: gt-particle-float linear infinite;
}
.gt-hero-particles span:nth-child(1)  { width:6px;  height:6px;  background:#f59e0b; left:8%;   animation-duration:14s; animation-delay:0s;    top:80%; }
.gt-hero-particles span:nth-child(2)  { width:4px;  height:4px;  background:#db2777; left:18%;  animation-duration:11s; animation-delay:2s;    top:90%; }
.gt-hero-particles span:nth-child(3)  { width:8px;  height:8px;  background:#7c3aed; left:25%;  animation-duration:16s; animation-delay:1s;    top:85%; }
.gt-hero-particles span:nth-child(4)  { width:5px;  height:5px;  background:#f59e0b; left:40%;  animation-duration:13s; animation-delay:3s;    top:88%; }
.gt-hero-particles span:nth-child(5)  { width:7px;  height:7px;  background:#0ea5e9; left:55%;  animation-duration:18s; animation-delay:0.5s;  top:82%; }
.gt-hero-particles span:nth-child(6)  { width:4px;  height:4px;  background:#db2777; left:65%;  animation-duration:12s; animation-delay:4s;    top:87%; }
.gt-hero-particles span:nth-child(7)  { width:6px;  height:6px;  background:#10b981; left:72%;  animation-duration:15s; animation-delay:1.5s;  top:83%; }
.gt-hero-particles span:nth-child(8)  { width:5px;  height:5px;  background:#f59e0b; left:82%;  animation-duration:17s; animation-delay:2.5s;  top:89%; }
.gt-hero-particles span:nth-child(9)  { width:9px;  height:9px;  background:#7c3aed; left:90%;  animation-duration:14s; animation-delay:0s;    top:86%; }
.gt-hero-particles span:nth-child(10) { width:4px;  height:4px;  background:#0ea5e9; left:33%;  animation-duration:20s; animation-delay:6s;    top:91%; }
.gt-hero-particles span:nth-child(11) { width:6px;  height:6px;  background:#db2777; left:48%;  animation-duration:11s; animation-delay:3.5s;  top:84%; }
.gt-hero-particles span:nth-child(12) { width:5px;  height:5px;  background:#10b981; left:60%;  animation-duration:19s; animation-delay:7s;    top:92%; }

@keyframes gt-particle-float {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-90vh) scale(0.5); opacity: 0; }
}
@keyframes gt-orb-drift {
    0%   { transform: translate(0,0); }
    100% { transform: translate(30px, -30px); }
}

.gt-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gt-accent);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.gt-hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 760px;
    margin-bottom: 20px;
}
.gt-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gt-accent), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gt-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Search bar */
.gt-search-form {
    display: flex;
    gap: 0;
    max-width: 580px;
    width: 100%;
    margin-bottom: 32px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.25), 0 20px 60px rgba(0,0,0,0.4);
}
.gt-search-form input[type="search"] {
    flex: 1;
    padding: 18px 24px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.96);
    color: var(--gt-dark);
    min-width: 0;
}
.gt-search-form input::placeholder { color: #64748b; }
.gt-search-form button {
    padding: 18px 28px;
    background: var(--gt-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.gt-search-form button:hover { background: var(--gt-accent-h); }

/* Popular tags */
.gt-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 600px;
}
.gt-hero-tags-label {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 600;
    align-self: center;
    margin-right: 4px;
}
.gt-hero-tags a {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    transition: all 0.25s;
}
.gt-hero-tags a:hover {
    background: rgba(245,158,11,0.18);
    color: var(--gt-accent);
    border-color: rgba(245,158,11,0.5);
    box-shadow: 0 0 16px rgba(245,158,11,0.2);
    transform: translateY(-1px);
}

/* Stats strip inside hero */
.gt-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.gt-stat { text-align: center; }
.gt-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}
.gt-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── WAVE DIVIDER ── */
.gt-wave {
    display: block;
    width: 100%;
    background: #0d0b1e;
    line-height: 0;
}
.gt-wave svg { display: block; width: 100%; }

/* ── SECTION WRAPPER ── */
.gt-section {
    padding: 80px 24px;
    max-width: var(--gt-max-w);
    margin: 0 auto;
}

.gt-section-header { text-align: center; margin-bottom: 48px; }
.gt-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #db2777 !important;
    margin-bottom: 10px;
    background: rgba(219,39,119,0.1) !important;
    border: 1px solid rgba(219,39,119,0.2) !important;
    padding: 4px 12px;
    border-radius: 50px;
}
.gt-section-header h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.gt-section-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── CATEGORY GRID ── */
.gt-categories-bg {
    background: var(--gt-dark);
}

.gt-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gt-cat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--gt-card-border);
    border-radius: var(--gt-radius);
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.gt-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.gt-cat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gt-pink), var(--gt-accent));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.gt-cat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}
.gt-cat-card:hover::after { transform: scaleX(1); }

.gt-cat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.gt-cat-icon svg { display: block; }
.gt-cat-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.gt-cat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
.gt-cat-arrow {
    margin-top: 16px;
    font-size: 18px;
    color: var(--gt-pink);
    font-weight: 800;
    transition: transform 0.2s;
}
.gt-cat-card:hover .gt-cat-arrow { transform: translateX(4px); }

/* ── POSTS GRID ── */
.gt-posts-bg { background: var(--gt-dark2); }

.gt-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gt-post-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--gt-card-border);
    border-radius: var(--gt-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.gt-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.07);
}
.gt-post-card:hover .gt-post-thumb { opacity: 0.9; }
.gt-post-card:hover .gt-thumb-icon { transform: scale(1.1); }

/* ── Gradient Thumbnail ── */
.gt-post-thumb {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.3s;
}
.gt-thumb-icon {
    font-size: 32px;
    opacity: 0.25;
    transition: transform 0.3s ease;
    position: absolute;
    right: 16px;
    bottom: 12px;
}
.gt-thumb-artist {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.3);
}

.gt-post-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gt-post-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gt-pink);
    margin-bottom: 6px;
}
.gt-post-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gt-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}
.gt-post-meta span { display: flex; align-items: center; gap: 4px; }

.gt-view-all-wrap {
    text-align: center;
    margin-top: 40px;
}
.gt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.gt-btn-primary {
    background: var(--gt-pink);
    color: #fff;
    box-shadow: 0 4px 20px rgba(219,39,119,0.4);
    position: relative;
    overflow: hidden;
}
.gt-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: gt-btn-shimmer 2.8s ease infinite;
}
@keyframes gt-btn-shimmer {
    0%   { left: -100%; }
    60%  { left: 160%; }
    100% { left: 160%; }
}
.gt-btn-primary:hover {
    background: var(--gt-pink-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(219,39,119,0.55);
}
.gt-btn-outline {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}
.gt-btn-outline:hover {
    border-color: var(--gt-pink);
    color: var(--gt-pink);
    background: rgba(219,39,119,0.08);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(219,39,119,0.2);
}

/* ── FEATURES STRIP ── */
.gt-features-bg {
    background: var(--gt-dark);
    padding: 80px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gt-features-inner {
    max-width: var(--gt-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.gt-feature {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--gt-radius);
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.gt-feature:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.gt-feature-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.gt-feature-icon-wrap svg { display: block; }
.gt-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.gt-feature-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ── PREMIUM FOOTER (inline for front-page) ── */
body .gt-footer-premium {
    background: #0a0917 !important;
    color: rgba(255,255,255,0.6) !important;
    font-family: 'Outfit', sans-serif !important;
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    box-sizing: border-box;
    padding: 0 !important;
}
body .gt-footer-premium .gt-footer-glow {
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #f59e0b, #db2777, #7c3aed);
    background-size: 300% 100%;
    animation: gt-footer-shimmer 6s ease infinite;
}
@keyframes gt-footer-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
body .gt-footer-premium .gt-footer-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 56px 32px 40px !important;
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 48px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
body .gt-footer-premium .gt-footer-brand { max-width: 340px; }
body .gt-footer-premium .gt-footer-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    margin-bottom: 16px !important;
}
body .gt-footer-premium .gt-footer-logo-img {
    height: 36px !important;
    width: auto !important;
    max-width: 36px !important;
    border-radius: 6px;
}
body .gt-footer-premium .gt-footer-wordmark {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}
body .gt-footer-premium .gt-footer-wordmark em {
    font-style: normal !important;
    color: #f59e0b !important;
}
body .gt-footer-premium .gt-footer-tagline {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.45) !important;
    margin: 0 0 24px 0 !important;
}
body .gt-footer-premium .gt-footer-socials {
    display: flex !important;
    gap: 14px !important;
}
body .gt-footer-premium .gt-footer-socials a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.25s ease;
}
body .gt-footer-premium .gt-footer-socials a:hover {
    background: rgba(124, 58, 237, 0.25) !important;
    color: #c4b5fd !important;
    transform: translateY(-2px);
}
body .gt-footer-premium h4.gt-footer-heading {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 0 20px 0 !important;
    padding: 0 0 10px 0 !important;
    border-bottom: 2px solid rgba(124,58,237,0.3) !important;
    display: inline-block !important;
}
body .gt-footer-premium .gt-footer-col ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
body .gt-footer-premium .gt-footer-col ul li {
    margin-bottom: 12px !important;
    list-style: none !important;
    padding: 0 !important;
}
body .gt-footer-premium .gt-footer-col ul li::before {
    display: none !important;
    content: none !important;
}
body .gt-footer-premium .gt-footer-col ul li::marker {
    display: none !important;
    content: none !important;
}
body .gt-footer-premium .gt-footer-col ul li a {
    color: rgba(255,255,255,0.5) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
body .gt-footer-premium .gt-footer-col ul li a:hover {
    color: #c4b5fd !important;
    padding-left: 4px;
}
body .gt-footer-premium .gt-footer-bottom {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 24px 32px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 8px;
    width: 100% !important;
    box-sizing: border-box !important;
}
body .gt-footer-premium .gt-footer-bottom p {
    margin: 0 !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.3) !important;
}
body .gt-footer-premium .gt-footer-developed {
    font-size: 13px !important;
    color: rgba(255,255,255,0.35) !important;
}
body .gt-footer-premium .gt-footer-developed a {
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.2s ease;
}
body .gt-footer-premium .gt-footer-developed a:hover {
    color: #f59e0b !important;
}
@media (max-width: 768px) {
    body .gt-footer-premium .gt-footer-inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
        padding: 40px 24px 32px !important;
    }
    body .gt-footer-premium .gt-footer-brand {
        grid-column: 1 / -1 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    body .gt-footer-premium .gt-footer-logo-link { justify-content: center !important; }
    body .gt-footer-premium .gt-footer-tagline { text-align: center !important; }
    body .gt-footer-premium .gt-footer-socials { justify-content: center !important; }
    body .gt-footer-premium h4.gt-footer-heading { display: block !important; text-align: center !important; }
    body .gt-footer-premium .gt-footer-col ul { text-align: center !important; }
    body .gt-footer-premium .gt-footer-col ul li a:hover { padding-left: 0 !important; }
    body .gt-footer-premium .gt-footer-bottom {
        justify-content: center !important;
        text-align: center !important;
        padding: 20px 24px !important;
    }
}
@media (max-width: 480px) {
    body .gt-footer-premium .gt-footer-inner {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}


/* ── BEGINNER SECTION ── */
.gt-beginner-bg {
    background: var(--gt-dark2);
    padding: 0;
}
.gt-beginner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gt-beginner-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: var(--gt-radius);
    padding: 28px 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.gt-beginner-card:hover {
    transform: translateY(-5px);
    background: rgba(124,58,237,0.1);
    border-color: rgba(124,58,237,0.45);
    box-shadow: 0 16px 40px rgba(124,58,237,0.25);
}
.gt-beginner-card .gt-beg-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.gt-beginner-card .gt-beg-icon svg { display: block; }
.gt-beginner-card .gt-beg-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* ── SUBMIT CTA ── */
.gt-submit-bg {
    background: linear-gradient(135deg, #0d0b1e 0%, #2d1b6a 100%);
    padding: 80px 24px;
    text-align: center;
}
.gt-submit-bg h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.gt-submit-bg p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0 auto 32px;
}
.gt-submit-bg .gt-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 4px 20px rgba(124,58,237,0.4);
    transition: all 0.2s;
}
.gt-submit-bg .gt-btn-submit:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(124,58,237,0.55);
}

/* ── OPT-IN SECTION ── */
.gt-optin-section {
    background: var(--gt-dark);
    padding: 60px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gt-optin-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 0 60px rgba(124,58,237,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}
.gt-optin-inner::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    top: -80px; right: -80px;
    pointer-events: none;
}
.gt-optin-inner h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    position: relative;
}
.gt-optin-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    position: relative;
}
.gt-optin-form {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 16px;
    position: relative;
}
.gt-optin-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.gt-optin-form input::placeholder { color: rgba(255,255,255,0.35); }
.gt-optin-form input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}
.gt-optin-form button {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    border: none;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(124,58,237,0.4);
    position: relative;
    overflow: hidden;
}
.gt-optin-form button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: gt-btn-shimmer 2.5s ease infinite;
}
.gt-optin-form button:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(124,58,237,0.55);
}
.gt-optin-trust {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* ── SCROLL FADE IN ── */
.gt-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gt-fade-in.gt-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .gt-cat-grid,
    .gt-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .gt-features-inner { grid-template-columns: 1fr 1fr; }
    .gt-hero-stats { gap: 28px; }
}
@media (max-width: 600px) {
    .gt-cat-grid,
    .gt-posts-grid,
    .gt-features-inner { grid-template-columns: 1fr; }
    .gt-nav-links li:nth-child(-n+4) { display: none; }
    .gt-nav-links a { padding: 6px 12px; font-size: 13px; }
    .gt-hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .gt-search-form { flex-direction: column; border-radius: 12px; }
    .gt-search-form input,
    .gt-search-form button { border-radius: 0; }
    .gt-optin-form { flex-direction: column; }
    .gt-optin-inner { padding: 36px 24px; }
    .gt-beginner-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Social proof */
.gt-social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    .gt-social-proof-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
    }
    .gt-social-proof-grid > div {
        flex: 0 0 calc(50% - 8px);
        scroll-snap-align: start;
    }
    .gt-social-proof-stats { gap: 24px !important; }
}

/* ═══ Combined Styles ═══ */

.gt-artist-circle-link:hover .gt-artist-circle { transform: translateY(-6px) scale(1.05); border-color: rgba(255,255,255,0.4) !important; box-shadow: 0 16px 32px rgba(0,0,0,0.5); }
.gt-artists-flex::-webkit-scrollbar { height: 6px; }
.gt-artists-flex::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; margin: 0 20px; }
.gt-artists-flex::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
.gt-artists-flex::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }