/*
Theme Name: Deep Ocean
Theme URI: https://example.com/moban41
Author: Abyssal Studio
Description: Deep Ocean — a bioluminescent underwater theme with abyssal blues, glowing teal accents, drifting bubbles, and submerged depth. Soft rounded typography evoking pressure and silence.
Version: 1.0
Text Domain: deepocean
*/

:root {
    --abyss-void:    #0c1222;
    --abyss-void-2:  #111a30;
    --abyss-void-3:  #1e2a44;
    --abyss-deep:    #0369a1;
    --abyss-deep-2:  #075985;
    --abyss-ocean:   #0ea5e9;
    --abyss-ocean-2: #38bdf8;
    --abyss-surface: #bae6fd;
    --abyss-foam:    #e0f2fe;
    --abyss-ash:     #94a3b8;
    --abyss-ink:     #e0f2fe;
    --abyss-ink-soft:#cbd5e1;
    --abyss-radius-sm: 12px;
    --abyss-radius:    20px;
    --abyss-radius-lg: 36px;
    --abyss-shadow:    0 24px 60px rgba(3, 105, 161, .35);
    --abyss-glow:      0 0 30px rgba(14, 165, 233, .55);
    --abyss-fz-1: clamp(46px, 7vw, 90px);
    --abyss-fz-2: clamp(28px, 3.4vw, 44px);
    --abyss-fz-3: 22px;
    --abyss-fz-base: 16px;
    --abyss-fz-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
    background:
      radial-gradient(900px 700px at 80% -20%, rgba(14, 165, 233, .25), transparent 60%),
      radial-gradient(700px 600px at 0% 30%, rgba(3, 105, 161, .35), transparent 65%),
      radial-gradient(600px 500px at 50% 100%, rgba(56, 189, 248, .12), transparent 70%),
      linear-gradient(180deg, var(--abyss-void) 0%, #050a17 100%);
    background-attachment: fixed;
    color: var(--abyss-ink);
    font-size: var(--abyss-fz-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* Floating bubbles */
body::before {
    content: '';
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      radial-gradient(circle at 15% 80%, rgba(186, 230, 253, .08) 6px, transparent 7px),
      radial-gradient(circle at 25% 60%, rgba(186, 230, 253, .06) 4px, transparent 5px),
      radial-gradient(circle at 70% 40%, rgba(56, 189, 248, .08) 5px, transparent 6px),
      radial-gradient(circle at 85% 70%, rgba(186, 230, 253, .07) 8px, transparent 9px),
      radial-gradient(circle at 45% 20%, rgba(56, 189, 248, .06) 3px, transparent 4px);
    background-size: 800px 800px;
    animation: abyss-drift 60s linear infinite;
}
@keyframes abyss-drift {
    from { background-position: 0 0; }
    to { background-position: 0 -800px; }
}
a { color: var(--abyss-ocean-2); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--abyss-surface); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', 'Source Sans Pro', sans-serif;
    color: var(--abyss-foam);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.15;
}
h1 { font-size: var(--abyss-fz-1); font-weight: 700; }
h2 { font-size: var(--abyss-fz-2); }
h3 { font-size: var(--abyss-fz-3); }
p  { margin-bottom: 1em; color: var(--abyss-ink-soft); }

.abyss-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Buttons - rounded liquid pills */
.abyss-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--abyss-ocean) 0%, var(--abyss-deep) 100%);
    color: var(--abyss-foam) !important;
    font-weight: 600; font-size: 15px;
    border: 1px solid rgba(186, 230, 253, .3); border-radius: 999px;
    box-shadow: var(--abyss-shadow), inset 0 1px 0 rgba(255,255,255,.18);
    transition: all .35s ease;
    position: relative; overflow: hidden;
}
.abyss-btn::after { content: ' →'; transition: transform .25s ease; }
.abyss-btn:hover { transform: translateY(-3px); box-shadow: 0 30px 80px rgba(14, 165, 233, .55), inset 0 1px 0 rgba(255,255,255,.25); color: var(--abyss-foam) !important; }
.abyss-btn:hover::after { transform: translateX(4px); }
.abyss-btn-ghost { background: transparent; color: var(--abyss-ocean-2) !important; border: 1.5px solid rgba(14, 165, 233, .5); box-shadow: none; }
.abyss-btn-ghost:hover { background: rgba(14, 165, 233, .1); color: var(--abyss-surface) !important; border-color: var(--abyss-ocean-2); }

/* Header */
.abyss-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(12, 18, 34, .72);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(14, 165, 233, .18);
}
.abyss-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 18px; }
.abyss-logo {
    font-family: 'Quicksand', sans-serif; font-weight: 700;
    font-size: 24px; color: var(--abyss-foam) !important;
    letter-spacing: .01em; display: inline-flex; align-items: center; gap: 10px;
}
.abyss-bubble {
    width: 26px; height: 26px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--abyss-foam) 0%, var(--abyss-ocean) 30%, var(--abyss-deep) 80%);
    box-shadow: 0 0 20px rgba(14, 165, 233, .8), inset -3px -3px 6px rgba(0,0,0,.25);
    animation: abyss-float 3s ease-in-out infinite;
    position: relative;
}
.abyss-bubble::before {
    content: ''; position: absolute;
    top: 4px; left: 5px; width: 8px; height: 8px; border-radius: 50%;
    background: rgba(224, 242, 254, .85);
    filter: blur(.5px);
}
@keyframes abyss-float {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 20px rgba(14, 165, 233, .8), inset -3px -3px 6px rgba(0,0,0,.25); }
    50% { transform: translateY(-3px); box-shadow: 0 0 32px rgba(56, 189, 248, 1), inset -3px -3px 6px rgba(0,0,0,.25); }
}
.abyss-logo span { color: var(--abyss-ocean-2); font-weight: 500; }
.abyss-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.abyss-nav a {
    color: var(--abyss-ink-soft);
    padding: 10px 16px; border-radius: 999px;
    font-weight: 500; font-size: 14px;
    transition: all .25s ease;
}
.abyss-nav a:hover { color: var(--abyss-foam); background: rgba(14, 165, 233, .12); }
.abyss-nav-cta {
    background: linear-gradient(135deg, var(--abyss-ocean), var(--abyss-deep));
    color: var(--abyss-foam) !important; font-weight: 600;
    padding: 10px 22px !important;
    box-shadow: 0 6px 20px rgba(14, 165, 233, .4);
    border: 1px solid rgba(186, 230, 253, .25);
}
.abyss-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(14, 165, 233, .55); color: var(--abyss-foam) !important; }

/* Hero */
.abyss-hero { position: relative; padding: 110px 0 90px; overflow: hidden; }
.abyss-hero::before {
    content: ''; position: absolute;
    top: 10%; right: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(56, 189, 248, .55) 0%, transparent 70%);
    filter: blur(60px); border-radius: 50%; z-index: 1;
    animation: abyss-glow 8s ease-in-out infinite;
}
@keyframes abyss-glow {
    0%, 100% { opacity: .55; transform: translate(0,0) scale(1); }
    50% { opacity: .85; transform: translate(-30px, 20px) scale(1.1); }
}
.abyss-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
@media(max-width: 960px){ .abyss-hero-grid { grid-template-columns: 1fr; } }
.abyss-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px;
    background: rgba(14, 165, 233, .12);
    border: 1px solid rgba(14, 165, 233, .35);
    color: var(--abyss-ocean-2);
    font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 26px;
}
.abyss-eyebrow::before { content:''; width:8px; height:8px; border-radius:50%; background: var(--abyss-ocean-2); box-shadow: 0 0 12px var(--abyss-ocean-2); animation: abyss-float 1.6s ease-in-out infinite; }
.abyss-hero h1 { margin-bottom: 24px; }
.abyss-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--abyss-ocean), var(--abyss-surface));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.abyss-hero p { font-size: 19px; color: var(--abyss-ink-soft); max-width: 540px; margin-bottom: 34px; }
.abyss-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.abyss-hero-card {
    position: relative;
    padding: 34px;
    background: rgba(17, 26, 48, .65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(14, 165, 233, .25);
    border-radius: var(--abyss-radius-lg);
    box-shadow: var(--abyss-shadow);
}
.abyss-hero-card h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .14em; color: var(--abyss-ocean-2); margin-bottom: 18px; }
.abyss-hero-card ul { list-style: none; }
.abyss-hero-card li {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(14, 165, 233, .14);
}
.abyss-hero-card li:last-child { border-bottom: none; }
.abyss-match { display: flex; flex-direction: column; gap: 2px; }
.abyss-match strong { color: var(--abyss-foam); font-weight: 600; }
.abyss-match small { color: var(--abyss-ash); font-size: 12px; }
.abyss-odds {
    font-family: 'Quicksand', sans-serif; font-weight: 700;
    font-size: 17px; color: var(--abyss-surface);
    padding: 6px 14px; border-radius: 999px;
    background: rgba(14, 165, 233, .15);
    border: 1px solid rgba(14, 165, 233, .35);
    box-shadow: 0 0 18px rgba(14, 165, 233, .3);
}

/* Main Layout */
.abyss-main { padding: 80px 0 100px; position: relative; z-index: 2; }
.abyss-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; }
@media(max-width: 960px){ .abyss-layout { grid-template-columns: 1fr; } }

.abyss-section-head {
    display: flex; align-items: end; justify-content: space-between; gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(14, 165, 233, .2);
}
.abyss-section-head h2 em { font-style: normal; color: var(--abyss-ocean-2); }
.abyss-section-sub { color: var(--abyss-ash); font-size: 14px; display: block; margin-top: 6px; font-style: italic; }
.abyss-link { color: var(--abyss-ocean-2); font-weight: 600; font-size: 14px; }
.abyss-link::after { content: ' →'; transition: margin-left .2s ease; }
.abyss-link:hover::after { margin-left: 4px; }

/* Cards */
.abyss-feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media(max-width: 700px){ .abyss-feed { grid-template-columns: 1fr; } }
.abyss-card {
    background: rgba(17, 26, 48, .55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(14, 165, 233, .14);
    border-radius: var(--abyss-radius);
    overflow: hidden;
    transition: all .35s ease;
    animation: abyss-rise .7s ease-out backwards;
    animation-delay: var(--abyss-d, 0ms);
}
@keyframes abyss-rise {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.abyss-card:hover { transform: translateY(-6px); border-color: var(--abyss-ocean); box-shadow: 0 24px 60px rgba(14, 165, 233, .25); }
.abyss-card-thumb { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, var(--abyss-deep) 0%, var(--abyss-ocean) 100%); }
.abyss-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.abyss-card:hover .abyss-card-thumb img { transform: scale(1.06); }
.abyss-card-thumb-fb {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 70px;
    color: var(--abyss-foam); opacity: .35;
}
.abyss-card-tag {
    position: absolute; top: 14px; left: 14px;
    padding: 6px 14px; background: rgba(12, 18, 34, .85);
    color: var(--abyss-surface);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    border: 1px solid var(--abyss-ocean-2);
    border-radius: 999px; z-index: 2;
    backdrop-filter: blur(6px);
}
.abyss-card-body { padding: 24px; }
.abyss-card-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--abyss-ash); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.abyss-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--abyss-ocean); box-shadow: 0 0 8px var(--abyss-ocean); }
.abyss-card h3 { margin-bottom: 12px; font-size: 22px; }
.abyss-card h3 a { color: var(--abyss-foam); }
.abyss-card h3 a:hover { color: var(--abyss-ocean-2); }
.abyss-card-link { font-size: 13px; font-weight: 700; color: var(--abyss-ocean-2); text-transform: uppercase; letter-spacing: .1em; }

/* Sidebar */
.abyss-aside { display: flex; flex-direction: column; gap: 28px; }
.abyss-widget {
    padding: 26px;
    background: rgba(17, 26, 48, .55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(14, 165, 233, .15);
    border-radius: var(--abyss-radius);
}
.abyss-widget h3 {
    font-size: 13px; text-transform: uppercase; letter-spacing: .14em;
    color: var(--abyss-ocean-2); margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(14, 165, 233, .25);
}
.abyss-widget-cta { background: linear-gradient(135deg, rgba(3, 105, 161, .55), rgba(14, 165, 233, .35)); border-color: rgba(56, 189, 248, .5); box-shadow: 0 12px 40px rgba(14, 165, 233, .25); }
.abyss-widget-cta strong { display: block; font-family: 'Quicksand', sans-serif; font-size: 22px; margin: 6px 0 8px; color: var(--abyss-foam); }
.abyss-widget-cta p { font-size: 14px; margin-bottom: 16px; }
.abyss-odds-list, .abyss-pop-list, .abyss-cat-list { list-style: none; }
.abyss-odds-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(14, 165, 233, .12); font-size: 14px; }
.abyss-odds-list li:last-child { border-bottom: none; }
.abyss-odds-list strong { color: var(--abyss-surface); }
.abyss-pop-list li a { display: flex; gap: 14px; padding: 10px 0; color: var(--abyss-ink-soft); align-items: flex-start; border-bottom: 1px solid rgba(14, 165, 233, .12); }
.abyss-pop-list li:last-child a { border-bottom: none; }
.abyss-pop-num { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--abyss-ocean-2); font-size: 22px; line-height: 1; min-width: 30px; }
.abyss-pop-title { font-size: 14px; line-height: 1.45; }
.abyss-cat-list li a { display: flex; justify-content: space-between; padding: 8px 0; color: var(--abyss-ink-soft); border-bottom: 1px solid rgba(14, 165, 233, .12); }
.abyss-cat-list li a:hover { color: var(--abyss-ocean-2); }
.abyss-cat-list li:last-child a { border-bottom: none; }
.abyss-cat-list span { color: var(--abyss-ash); font-size: 12px; }

/* Breadcrumb */
.abyss-crumb { padding: 16px 0 24px; font-size: 13px; color: var(--abyss-ash); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; text-transform: uppercase; letter-spacing: .08em; }
.abyss-crumb a { color: var(--abyss-ocean-2); }

/* Single Article */
.abyss-article-head { margin-bottom: 36px; }
.abyss-article-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--abyss-ash); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; flex-wrap: wrap; }
.abyss-article-meta a { color: var(--abyss-ocean-2); }
.abyss-article-hero { margin: 24px 0 40px; border-radius: var(--abyss-radius-lg); overflow: hidden; border: 1px solid rgba(14, 165, 233, .2); box-shadow: var(--abyss-shadow); }
.abyss-article-body { font-size: 17px; line-height: 1.85; color: var(--abyss-ink-soft); }
.abyss-article-body h2, .abyss-article-body h3 { margin-top: 1.6em; margin-bottom: .6em; color: var(--abyss-foam); }
.abyss-article-body p { margin-bottom: 1.2em; }
.abyss-article-body a { color: var(--abyss-ocean-2); border-bottom: 1px solid rgba(14, 165, 233, .35); }
.abyss-article-body blockquote { border-left: 4px solid var(--abyss-ocean); padding: 12px 22px; margin: 24px 0; background: rgba(14, 165, 233, .08); font-style: italic; color: var(--abyss-foam); border-radius: 0 12px 12px 0; }
.abyss-article-body code { background: rgba(14, 165, 233, .14); padding: 2px 6px; border-radius: 4px; color: var(--abyss-surface); font-size: .92em; }
.abyss-article-foot { padding-top: 24px; margin-top: 36px; border-top: 1px solid rgba(14, 165, 233, .18); }
.abyss-article-tags a { display: inline-block; padding: 4px 12px; margin: 4px 6px 4px 0; background: rgba(14, 165, 233, .1); color: var(--abyss-ocean-2); border-radius: 999px; font-size: 12px; }

/* Related */
.abyss-related { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(14, 165, 233, .18); }
.abyss-related h2 { margin-bottom: 24px; }
.abyss-related h2 em { font-style: normal; color: var(--abyss-ocean-2); }
.abyss-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width: 800px){ .abyss-related-grid { grid-template-columns: 1fr; } }
.abyss-rel-card { background: rgba(17, 26, 48, .5); border: 1px solid rgba(14, 165, 233, .12); border-radius: var(--abyss-radius); overflow: hidden; transition: all .3s ease; }
.abyss-rel-card:hover { border-color: var(--abyss-ocean); transform: translateY(-4px); }
.abyss-rel-thumb { display: block; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--abyss-deep), var(--abyss-ocean)); overflow: hidden; }
.abyss-rel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.abyss-rel-card h4 { padding: 16px 16px 6px; }
.abyss-rel-card h4 a { color: var(--abyss-foam); font-size: 16px; }
.abyss-rel-card time { display: block; padding: 0 16px 16px; font-size: 12px; color: var(--abyss-ash); text-transform: uppercase; letter-spacing: .08em; }

/* Archive Header */
.abyss-arc-head { padding: 40px 0; text-align: center; }
.abyss-arc-eyebrow { display: inline-block; padding: 6px 14px; background: rgba(14, 165, 233, .12); border: 1px solid rgba(14, 165, 233, .35); border-radius: 999px; color: var(--abyss-ocean-2); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.abyss-arc-head h1 span { color: var(--abyss-ocean-2); }
.abyss-arc-desc { color: var(--abyss-ink-soft); font-size: 16px; margin-top: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Pagination */
.abyss-pagination { margin-top: 40px; }
.abyss-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; list-style: none; }
.abyss-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; background: rgba(14, 165, 233, .08); border: 1px solid rgba(14, 165, 233, .25); border-radius: 999px; color: var(--abyss-ink); font-weight: 600; }
.abyss-pagination .page-numbers.current, .abyss-pagination .page-numbers:hover { background: linear-gradient(135deg, var(--abyss-ocean), var(--abyss-deep)); color: var(--abyss-foam); border-color: transparent; }

/* Comments */
.abyss-comments { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(14, 165, 233, .18); }
.abyss-comments-title { margin-bottom: 24px; }
.abyss-comment-list { list-style: none; }
.abyss-comment-list .comment, .abyss-comment-list li.comment { padding: 20px 0; border-bottom: 1px solid rgba(14, 165, 233, .15); }
.abyss-comment-list .children { margin-left: 28px; }
.abyss-comment-form { margin-top: 30px; display: grid; gap: 14px; }
.abyss-comment-form input[type=text], .abyss-comment-form input[type=email], .abyss-comment-form input[type=url], .abyss-comment-form textarea { width: 100%; padding: 12px 16px; background: rgba(12, 18, 34, .7); border: 1px solid rgba(14, 165, 233, .25); border-radius: 12px; color: var(--abyss-foam); font-family: inherit; font-size: 15px; }
.abyss-comment-form textarea { min-height: 120px; }
.abyss-comment-form input:focus, .abyss-comment-form textarea:focus { outline: none; border-color: var(--abyss-ocean); box-shadow: 0 0 0 3px rgba(14, 165, 233, .18); }
.abyss-comments-closed { color: var(--abyss-ash); padding: 16px 0; }

/* 404 */
.abyss-404 { padding: 120px 0; text-align: center; }
.abyss-404 h1 { font-size: clamp(80px, 14vw, 200px); background: linear-gradient(135deg, var(--abyss-ocean), var(--abyss-surface)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.abyss-404 h1 span { animation: abyss-float 2s ease-in-out infinite; display: inline-block; }
.abyss-404 p { font-size: 18px; margin: 16px 0 30px; }
.abyss-404-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.abyss-404-search { margin-top: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.abyss-404-search input[type=search] { width: 100%; padding: 14px 18px; background: rgba(17, 26, 48, .8); border: 1px solid rgba(14, 165, 233, .3); border-radius: 999px; color: var(--abyss-foam); }

/* Footer */
.abyss-footer { margin-top: 80px; padding: 70px 0 30px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.5)); border-top: 1px solid rgba(14, 165, 233, .2); position: relative; z-index: 2; }
.abyss-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media(max-width: 800px){ .abyss-footer-grid { grid-template-columns: 1fr 1fr; } }
.abyss-footer-brand p { font-size: 14px; max-width: 360px; margin-top: 14px; color: var(--abyss-ash); }
.abyss-footer-col h4 { color: var(--abyss-ocean-2); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.abyss-footer-col ul { list-style: none; }
.abyss-footer-col li { margin-bottom: 10px; }
.abyss-footer-col a { color: var(--abyss-ink-soft); font-size: 14px; }
.abyss-footer-col a:hover { color: var(--abyss-surface); }
.abyss-footer-bottom { padding-top: 26px; border-top: 1px solid rgba(14, 165, 233, .15); text-align: center; color: var(--abyss-ash); font-size: 13px; }

::selection { background: var(--abyss-ocean); color: var(--abyss-foam); }
