:root {
    --bg-color: #1C1C1E;
    --secondary-bg: #2C2C2E;
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --accent: #FFCC00;
    /* Apple Yellow */
    --separator: #38383A;
    --hover-bg: #3A3A3C;
    --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinning-logo-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #8e8e93 0%, #c7c7cc 30%, #3a3a3c 45%, #c7c7cc 70%, #8e8e93 100%);
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: spin 5s linear infinite;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* CD'nin metalik parlaması için ışık efekti */
.spinning-logo-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(255, 255, 255, 0.1) 45deg,
            transparent 90deg,
            rgba(255, 255, 255, 0.1) 180deg,
            transparent 270deg,
            rgba(255, 255, 255, 0.1) 315deg,
            transparent 360deg);
    pointer-events: none;
}

/* CD'nin merkezindeki delik görüntüsü */
.spinning-logo-wrapper::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--bg-color);
    /* Sayfa arka planıyla uyumlu merkez delik */
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8), 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.spinning-logo {
    width: 70%;
    /* CD'nin üzerinde bir baskı (label) gibi durması için */
    height: 70%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 5;
    background-color: #000;
}

.header-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-weight: 600;
    /* Global semi-bold weight */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-system);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 44px;
    padding-bottom: 80px;
}

/* Top Bar Styling */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 44px;
    background-color: rgba(28, 28, 30, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
}

.top-bar.scrolled {
    border-bottom: 0.5px solid var(--separator);
}

.top-bar-left {
    display: flex;
    align-items: center;
    color: var(--accent);
    font-size: 17px;
    gap: 4px;
}

.nav-title {
    font-weight: 600;
    font-size: 17px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.top-bar.scrolled .nav-title {
    opacity: 1;
    transform: translateY(0);
}

.top-bar-right {
    display: flex;
    gap: 20px;
    color: var(--accent);
}

.nav-icon {
    width: 22px;
    height: 22px;
}

.back-icon {
    width: 24px;
    height: 24px;
}

/* Main Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* Header */
.main-header {
    margin-bottom: 32px;
    text-align: left;
}

.main-header h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.header-sub {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 400;
}

.header-sub em {
    font-weight: 500;
    /* iPhone Medium font weight */
    font-style: italic;
}

.marker-underline {
    position: relative;
    display: inline-block;
    padding: 0 4px;
    color: var(--text-secondary);
    /* Restored to previous muted color */
}

.marker-underline::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -4px;
    width: 105%;
    height: 8px;
    /* Two irregular red marker strokes using SVG */
    background-image:
        url("data:image/svg+xml,%3Csvg width='200' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12c30-2 60-4 190-2' stroke='%23FF3B30' stroke-width='4' stroke-linecap='round' fill='none' opacity='0.6'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='200' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 15c40 1 80-2 195 3' stroke='%23FF3B30' stroke-width='3' stroke-linecap='round' fill='none' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    transform: rotate(-1deg);
}

/* Checklist Style for Intro */
.checklist-intro {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Increased from 8px for more breathing room */
}

.checked-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--text-primary);
}

.check-circle-filled {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-circle-filled i {
    width: 12px;
    height: 12px;
    color: #000;
}

.bold-instagram {
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1.5px dashed var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.bold-instagram:hover {
    color: var(--accent);
}

.bold-instagram i,
.bold-instagram svg {
    width: 18px;
    height: 18px;
}

.date-header {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
    margin-bottom: 8px;
    /* Reduced to sit closer to the line */
}

/* Highlights Separator */
.highlights-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.separator-line {
    flex-grow: 1;
    height: 0.5px;
    background-color: var(--separator);
}

.separator-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Spotify Animation & Style */
.spotify-link-v2 {
    color: #1DB954;
    /* Normal state Green */
    border-bottom: 1.5px dashed var(--accent);
    /* Permanent Yellow Line */
    margin-left: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.spotify-link-v2:hover,
.spotify-link-v2:hover .spotify-spin {
    color: var(--accent);
    /* Hover state Yellow */
}

.spotify-spin {
    animation: spotify-rotate 4s linear infinite;
    cursor: pointer;
    color: inherit;
    /* Takes color from parent */
    vertical-align: middle;
    transition: color 0.3s ease;
}

.spotify-spin:hover {
    filter: brightness(1.2);
}

@keyframes spotify-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Intro */
.intro-section {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* General Link Refinement */
a {
    transition: color 0.2s ease;
}

.item-text,
.note-title {
    border-bottom: 1px dashed transparent;
    transition: border-bottom 0.2s ease;
}

a:hover .item-text,
a:hover .note-title {
    color: var(--accent);
    border-bottom: 1px dashed var(--accent);
}

/* Sections */
.notes-section {
    margin-bottom: 32px;
}

.section-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 6px;
    margin-left: 16px;
    text-transform: uppercase;
}

.cta-centric-v4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.cta-texts-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.cta-text-wrapper-v4 {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-actions-v4 {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

/* Laser-Aimed 4-Arrow System - Shortened to not overlap button text */
.scribble-arrow {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 0 6px rgba(198, 40, 40, 0.4));
    opacity: 0.8;
    width: 50px;
    height: 95px;
    /* Shortened */
    top: 60px;
    /* Positioned perfectly below text */
    left: 50%;
}

/* Base Leftwards Arrow - Flipped to point INWARDS (PC) */
.arrow-cross-1,
.arrow-cross-3 {
    transform: translateX(-50%) translateX(-140px) scaleX(-1) rotate(15deg);
}

/* Base Rightwards Arrow - Pointing INWARDS (PC) */
.arrow-cross-2,
.arrow-cross-4 {
    transform: translateX(-50%) translateX(140px) scaleX(-1) rotate(15deg);
}

.scribble-circle {
    position: relative;
    padding: 8px 12px;
    font-size: 16px;
    color: var(--text-primary);
    z-index: 1;
    text-align: center;
}

.scribble-circle::after {
    content: "";
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 210%;
    height: 350%;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='100' viewBox='0 0 400 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 50 C20 15, 100 10, 200 10 C300 10, 380 15, 380 50 C380 85, 300 90, 200 90 C100 90, 20 85, 20 50 Z' stroke='%23C62828' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' opacity='0.7' /%3E%3Cpath d='M25 55 C25 25, 105 15, 205 15 C305 15, 375 25, 375 55 C375 85, 305 85, 205 85 C105 85, 25 85, 25 55 Z' stroke='%23B71C1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.5' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

.scribble-arrow {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.6));
    opacity: 0.8;
}

.arrow-to-ig {
    top: 55px;
    right: 35%;
    width: 40px;
    height: 70px;
    transform: rotate(10deg);
}

.arrow-to-email {
    top: 55px;
    left: 35%;
    width: 40px;
    height: 70px;
    transform: rotate(-10deg) scaleX(-1);
}

@media (max-width: 480px) {

    .arrow-to-ig,
    .arrow-to-email {
        display: none;
        /* Hide on small screens to avoid clutter */
    }
}

/* Contact Actions (Premium Pilling Style) */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.action-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.action-pill i {
    width: 20px;
    height: 20px;
}

.ig-pill i {
    color: #E1306C;
}

.mail-pill i {
    color: #007AFF;
}

.bold-text {
    font-weight: 700;
}

@media (max-width: 600px) {
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
}

.notes-list.no-bg {
    background-color: transparent;
    padding: 0;
}

.project-accordion.active .chapter-toggle::before {
    content: "−";
}

.project-accordion .chapter-toggle::before {
    content: "+";
}

.project-accordion.active .chapter-header {
    background-color: var(--hover-bg);
    border-bottom-color: transparent;
}

.note-row {
    display: flex;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 0.5px solid var(--separator);
    transition: background-color 0.2s;
}

.note-row:last-child {
    border-bottom: none;
}

.note-row:hover {
    background-color: var(--hover-bg);
}

.note-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder {
    color: var(--text-secondary);
}

.note-content {
    flex-grow: 1;
    overflow: hidden;
}

.note-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.note-title {
    font-size: 17px;
    font-weight: 600;
}

.note-chevron {
    color: var(--text-secondary);
}

.note-chevron i {
    width: 16px;
    height: 16px;
}

.note-summary {
    font-size: 15px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer Section */
.notes-footer {
    text-align: center;
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(28, 28, 30, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 12px;
    border-top: 0.5px solid var(--separator);
    color: var(--accent);
    z-index: 1000;
}

.bottom-bar i {
    width: 24px;
    height: 24px;
}

.accent-icon {
    transform: scale(1.1);
}

/* Chapter Accordion */
.chapter-accordion {
    margin-top: 12px;
}

.chapter-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    background-color: var(--secondary-bg);
    border-radius: 12px;
    transition: background-color 0.2s;
}

.chapter-header:hover {
    background-color: var(--hover-bg);
}

.chapter-toggle {
    width: 20px;
    height: 20px;
    background-color: var(--separator);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--text-primary);
    font-weight: bold;
    font-size: 14px;
}

.chapter-title {
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    border-bottom: 0.2px dashed var(--separator);
    /* Extremely thin */
    padding-bottom: 2px;
    opacity: 0.85;
}

.chapter-content {
    display: none;
    padding: 12px 0 12px 32px;
}

.chapter-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.chapter-check {
    width: 20px;
    height: 20px;
    border: 1px solid var(--separator);
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-bg);
}

.chapter-check.checked {
    background-color: var(--separator);
    color: var(--text-secondary);
}

.chapter-check i {
    width: 14px;
    height: 14px;
}

.chapter-item span {
    font-size: 16px;
    color: var(--text-primary);
    opacity: 0.8;
}

.chapter-item.completed span {
    text-decoration: line-through;
    opacity: 0.5;
}

/* Accordion Toggle Logic (Minimal JS required) */
.chapter-accordion.active .chapter-content {
    display: block;
}

.chapter-accordion.active .chapter-toggle::before {
    content: "−";
}

.chapter-toggle::before {
    content: "+";
}

.arr-content {
    display: flex;
    width: 150px;
    /* Fixed width to keep ARR labels aligned */
}

.arr-amount {
    flex-grow: 1;
    font-variant-numeric: tabular-nums;
    /* Keeps numbers perfectly spaced */
}

.arr-label {
    width: 40px;
    text-align: right;
    font-weight: 500;
    opacity: 0.6;
}

/* Project Accordion Style */
.project-accordion {
    margin-bottom: 1px;
}

.project-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    background-color: var(--secondary-bg);
    border-bottom: 0.5px solid var(--separator);
    transition: background-color 0.2s;
}

.project-header:hover {
    background-color: var(--hover-bg);
}

.project-title-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Logoların büyümesi durumunda butonun taşmasını engeller */
}

.logo-container {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #000;
    overflow: hidden;
    /* Dışarıya taşan beyazlıkları kesinlikle gizler */
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-mini-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.6);
    /* Beyaz kenarları kutunun dışına fırlatır */
    display: block;
}

.project-year {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: normal;
    font-style: italic;
}

.project-body {
    display: none;
    padding: 24px 16px;
    background-color: var(--secondary-bg);
    border-bottom: 0.5px solid var(--separator);
}

.project-accordion.active .project-body {
    display: block;
}

.project-grid {
    display: flex;
    flex-wrap: nowrap;
    /* Strictly side-by-side */
    gap: 32px;
    align-items: flex-start;
}

.project-info {
    flex: 1.5;
    /* Metnin daha iyi yayılması için alanı artırdım */
    min-width: 0;
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
}

.project-visual {
    flex: 1;
    /* Visual takes the remaining space */
    min-width: 0;
}

.project-description {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-primary);
    opacity: 0.9;
    margin-bottom: 20px;
}

.project-link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    width: fit-content;
}

.project-link:hover {
    text-decoration: underline;
}

.project-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    border: 0.5px solid var(--separator);
    object-fit: cover;
}

.project-meta-tags {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.meta-dot {
    margin: 0 6px;
    opacity: 0.5;
}

@media (max-width: 600px) {
    .project-grid {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .project-visual {
        width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 400px) {
    .main-header h1 {
        font-size: 28px;
    }
}

/* Toast Notification (iOS Style) */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(44, 44, 46, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* IOS Dropdown Menu */
.menu-container {
    position: relative;
    display: flex;
    align-items: center;
}

.ios-menu {
    position: absolute;
    top: 40px;
    right: 0;
    width: 220px;
    background: rgba(44, 44, 46, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 14px;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 6px 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(-10px);
    transform-origin: top right;
    transition: all 0.25s cubic-bezier(0.2, 1, 0.2, 1);
}

.ios-menu.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-item:active {
    background-color: rgba(255, 255, 255, 0.15);
}

.menu-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* Link emphasis in bottom menu */
.ios-bottom-menu .menu-item:not(.start-item-v2) span {
    border-bottom: 1.5px dashed var(--accent);
    padding-bottom: 2px;
    display: inline-block;
}

/* Bottom Menu Specific Styles */
.ios-bottom-menu {
    top: auto;
    bottom: 60px;
    right: 0px;
    width: 280px;
    transform-origin: bottom right;
}

.menu-separator {
    height: 0.5px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

.menu-item.no-underline {
    text-decoration: none;
}

/* IOS Dropdown Menu Grid (Table Style) */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px 14px 0 0;
    margin: -6px 0 8px 0;
    overflow: hidden;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    background-color: rgba(44, 44, 46, 0.6);
    text-align: center;
    gap: 8px;
    pointer-events: none;
    /* Make non-clickable */
    cursor: default;
}

.grid-item i {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.grid-item span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    font-family: var(--font-system);
    padding: 0 4px;
    z-index: 1;
}

.grid-item span::after,
.menu-item.start-item-v2 span::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -2px;
    width: 105%;
    height: 8px;
    background-image:
        url("data:image/svg+xml,%3Csvg width='200' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12c30-2 60-4 190-2' stroke='%23FF3B30' stroke-width='6' stroke-linecap='round' fill='none' opacity='0.9'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='200' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 15c40 1 80-2 195 3' stroke='%23FF3B30' stroke-width='4' stroke-linecap='round' fill='none' opacity='0.7'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
    transform: rotate(-0.8deg);
    pointer-events: none;
}

.menu-item.start-item-v2 {
    display: flex;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    padding: 20px 16px;
    background: transparent;
    border-bottom: none !important;
    pointer-events: none;
    cursor: default;
}

.menu-item.start-item-v2 span {
    position: relative;
    z-index: 1;
}

.bottom-menu-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: default;
    /* Area is default unless on icon */
}

.bottom-menu-container .accent-icon {
    cursor: pointer;
}

.ios-bottom-menu {
    cursor: default;
}

.ios-bottom-menu .menu-item:not(.start-item-v2) {
    cursor: pointer;
}

@media (max-width: 480px) {
    .ios-bottom-menu {
        right: -10px;
    }
}

/* Custom Site Footer Styling */
.custom-site-footer {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 10px;
}

.footer-divider-line {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
    font-family: var(--font-system);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-divider-line::before,
.footer-divider-line::after {
    content: '';
    flex: 1;
    border-bottom: 0.5px solid var(--separator);
    opacity: 0.4;
}

.footer-divider-line span {
    padding: 0 15px;
}

.footer-sub-links {
    font-family: var(--font-system);
    font-weight: 400;
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.5;
    letter-spacing: 0.2px;
}

.checklist-sub-text {
    font-family: var(--font-system);
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-left: 32px;
    /* Align with the text, skipping the check circle */
    margin-top: -8px;
    /* Pull it closer to the playlist item */
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 480px) {

    /* 1. Header & Top Bar Fixes */
    .top-bar-left,
    .top-bar-left span {
        white-space: nowrap !important;
        font-size: 14px;
    }

    .nav-title {
        white-space: nowrap !important;
        font-size: 15px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .top-bar-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .top-bar-right {
        gap: 12px;
    }

    /* 2. Centric CTA Section Fixes */
    .cta-centric-v4 {
        gap: 20px;
    }

    .cta-texts-top {
        gap: 100px;
    }

    .scribble-circle {
        font-size: 17px !important;
        max-width: 72vw;
        /* Narrower text container to prevent scribble overflow */
        display: inline-block;
        line-height: 1.3;
    }

    .cta-texts-top .cta-text-wrapper-v4:last-child span {
        font-size: 18px !important;
    }

    .scribble-circle::after {
        width: 125%;
        /* Tighter scribble width to keep it on screen */
        height: 280%;
        /* Taller scribble for better coverage */
    }

    .scribble-arrow {
        width: 35px;
        height: 85px;
        /* Shortened to avoid button overlap */
        top: 70px;
    }

    /* Target Centric Positioning for Mobile */
    .arrow-cross-1,
    .arrow-cross-3 {
        transform: translateX(-50%) translateX(-120px) scaleX(-1) rotate(15deg);
    }

    .arrow-cross-2,
    .arrow-cross-4 {
        transform: translateX(-50%) translateX(120px) scaleX(-1) rotate(15deg);
    }

    .contact-actions-v4 {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
        margin-top: 100px;
        /* Better spacing for shorter arrows */
    }

    /* 3. Bottom Menu Grid Fixes (Restored to Grid but with Wrap) */
    .menu-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5px !important;
    }

    .grid-item {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 14px 8px !important;
        gap: 8px !important;
        text-align: center !important;
    }

    .grid-item i {
        width: 20px !important;
        height: 20px !important;
        opacity: 0.8;
    }

    .grid-item span {
        font-size: 13px !important;
        white-space: normal !important;
        line-height: 1.2;
        padding: 0 4px !important;
        text-align: center !important;
        word-break: break-word;
    }

    .grid-item span::after {
        display: block !important;
        width: 110%;
        height: 6px;
        bottom: -1px;
    }

    .ios-bottom-menu {
        width: 300px;
        right: -10px;
    }
}