body {
  margin: 0;
  padding: 20px;
  background: #121212;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.4;
  min-height: 100vh;
}

.share-tech-mono-regular {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

h1 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.asciiimg {
    color: #b25fff;
    width: 20%;
    height: auto;
}

.options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background: #121212;
    z-index: 10;
    padding: 10px 0;
}

.options a {
    color: #c300ff;
    text-decoration: none;
    padding: 5px 10px;
    transition: transform 0.2s ease;
}

.options a:hover {
    color: #e17eff;
    transform: scale(1.1);
    text-shadow:  0 0 15px #c300ff;
}

.follower-count {
    font-family: 'Share Tech Mono', monospace;
    font-size: 18px;
    margin: 5px 0;
}

.number {
    color: #c300ff;
}

hr {
    border: none;
    height: 1px;
    background-color: #c300ff;
    margin: 20px 0;
}

.right-side {
    display: none;
    margin-top: 20px;
    text-align: left;
}

.right-side.show {
    display: block;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-window {
    background: #111111;
    border: 2px solid #c300ff;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-family: 'Share Tech Mono', monospace;
    display: inline-block;
}

.terminal-header {
    color: #c300ff;
    font-size: 16px;
    margin-bottom: 10px;
}

.terminal-window iframe {
    width: 560px;
    height: 315px;
    border: none;
    border-radius: 3px;
}

.video-info p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-card {
    margin-top: 40px;
    padding: 20px;
    background: #1a1a1a;
    border: 2px solid #c300ff;
    border-radius: 10px;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
}

.footer-card h3 {
    color: #c300ff;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #c300ff;
    border-radius: 5px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #c300ff;
    color: #000;
}

.footer-card p {
    margin: 5px 0;
    color: #b0b0b0;
}

.footer-card form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 20px auto 0;
}

.footer-card label {
    color: #ffffff;
    font-size: 14px;
}

.footer-card input {
    background: #2a2a2a;
    border: 1px solid #c300ff;
    color: #ffffff;
    padding: 8px;
    border-radius: 5px;
    font-family: 'Share Tech Mono', monospace;
    width: 100%;
}

.footer-card textarea {
    background: #2a2a2a;
    border: 1px solid #c300ff;
    color: #ffffff;
    padding: 8px;
    border-radius: 5px;
    font-family: 'Share Tech Mono', monospace;
    resize: none;
    width: 100%;
    height: 20px;
}

.footer-card button {
    background: #c300ff;
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    transition: background 0.3s;
}

.footer-card button:hover {
    background: #e17eff;
}

.social-section {
    margin: 40px 0;
    text-align: center;
}

.social-section h2 {
    color: #c300ff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 24px;
    margin-bottom: 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.posts-grid iframe {
    width: 100%;
    border: 2px solid #c300ff;
    border-radius: 5px;
}

.post-card {
    display: block;
    background: #0b0b0b;
    border: 2px solid #c300ff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
}

.post-card:hover {
    transform: scale(1.02);
}

.post-card img {
    width: 100%;
    display: block;
}

.post-card {
    position: relative;
}

.post-card .preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.post-card:hover .preview {
    opacity: 1;
}

.post-card:hover .thumb {
    opacity: 0;
}

.insta-card {
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    flex-shrink: 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 28px;
    color: white;
    opacity: 0.6;
    transition: opacity 0.3s;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.insta-card:hover .play-button {
    opacity: 1;
}

.post-info {
    padding: 10px;
    font-family: 'Share Tech Mono', monospace;
}

.post-title {
    font-size: 16px;
    margin: 0 0 5px;
}

.post-stats {
    font-size: 12px;
    color: #b0b0b0;
}

.gear-section {
    margin: 40px 0;
    text-align: center;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gear-item {
    background: #1a1a1c;
    border: 2px solid #c300ff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, background 0.2s;
}

.gear-item:hover {
    transform: scale(1.05);
    background: #c300ff;
    color: #000;
}

.gear-item img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.gear-item h3 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 18px;
    margin: 10px 0;
}

.stars {
    font-size: 16px;
    color: #ffd700;
    margin-top: 5px;
}

.coming-soon-section {
    margin: 60px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 100%;
}

.coming-soon {
    max-width: 500px;
    padding: 20px !important;
    text-align: left;
}

.terminal-header {
    color: #c300ff;
    font-size: 16px;
    margin-bottom: 15px;
}

.terminal-line {
    color: #ffffff;
    font-family: 'Share Tech Mono', monospace;
    min-height: 25px;
}

.cursor-blink {
    display: inline-block;
    color: #c300ff;
    font-weight: bold;
    animation: blink 1s infinite;
}

.projects-teaser {
    margin: 60px 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.projects-teaser h2 {
    color: #c300ff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 28px;
    margin-bottom: 20px;
}

.teaser-text {
    font-family: 'Share Tech Mono', monospace;
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.teaser-links {
    gap: 15px;
}

.teaser-links a {
    border: 2px solid #c300ff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.teaser-links a:hover {
    background: #c300ff;
    color: #000;
}

.video-card {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.video-card iframe {
    transition: filter 0.3s;
    pointer-events: none; /* avoid clicking inside video */
}

.video-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    pointer-events: none; /* allow clicks through */
}

.video-card:hover iframe {
    filter: blur(4px);
}

.video-card:hover .overlay {
    opacity: 1;
}

.soch1 {
    text-align: center;
}

h1 {
  text-align: center;
}

    .about-container {
      max-width: 1100px;
      margin: 40px auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 30px;
      padding: 0 20px;
    }
    .system-info {
      background: #0b0b0b;
      border: 2px solid #c300ff;
      padding: 20px;
      border-radius: 5px;
      height: fit-content;
      text-align: center; /* Center the ASCII persona */
    }
    
    .persona-img {
      width: 80%;
      height: auto;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 5px #c300ff);
    }

    .info-readout {
      text-align: left;
      border-top: 1px dashed #c300ff;
      padding-top: 15px;
    }

    .info-line { margin: 8px 0; font-family: 'Share Tech Mono', monospace; font-size: 14px; }
    .label { color: #c300ff; font-weight: bold; }
    
    /* Dropdown Styling */
    details {
      background: #1a1a1a;
      border-left: 3px solid #c300ff;
      margin-bottom: 15px;
      font-family: 'Share Tech Mono', monospace;
    }
    summary {
      padding: 15px;
      cursor: pointer;
      list-style: none;
      color: #c300ff;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
    }
    summary::after { content: "[+]"; }
    details[open] summary::after { content: "[-]"; }
    
    .dropdown-content { padding: 0 15px 15px 15px; color: #b0b0b0; font-size: 14px; line-height: 1.6; }
    .skill-list { margin: 0; padding-left: 20px; list-style: square; }
    .tag { background: #333; padding: 2px 8px; border-radius: 3px; font-size: 12px; margin-right: 5px; display: inline-block; margin-bottom: 5px;}

    @media (max-width: 768px) {
      .about-container { grid-template-columns: 1fr; }
    }
  
/* --- THE ULTIMATE MOBILE REPAIR (FINAL VERSION) --- */
@media (max-width: 768px) {
    /* 1. FORCE THE H1 TO FIT */
    h1 {
        font-size: 20px !important; /* Small enough for one line */
        text-align: center !important;
        margin: 10px auto !important;
        display: block !important;
    }

    /* 2. THE NAVIGATION DIVIDERS FIX */
    .options {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0 !important;
        width: 100% !important;
        padding: 5px !important;
    }
    
    /* This makes the existing <p>|</p> tags in your HTML behave */
    .options p {
        margin: 0 8px !important;
        color: #444 !important; /* Dark grey dividers */
        font-size: 14px !important;
    }

    .options a p {
        font-size: 13px !important;
        margin: 0 !important;
        color: #c300ff !important;
    }

    /* 3. THE ASCII PFP: MAKE IT BIG */
    .asciiimg {
        width: 100% !important; /* Full phone width */
        max-width: 400px !important;
        height: auto !important;
        font-size: 7px !important; /* Prevents text from wrapping/breaking art */
        line-height: 1 !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
    }
/* 3. IFRAME & VIDEO FIX: Absolute Width */
    #video-container, .video-card {
        width: 100% !important;
        max-width: 100vw !important;
        margin: 10px 0 !important;
        padding: 0 !important;
    }

iframe {
    width: 100% !important; /* Forces it to match the phone width */
    height: auto !important;
    aspect-ratio: 16 / 9;   /* Keeps the cinematic shape */
}

    /* 5. THE SOCIALS BOX FIX */
    .footer-card {
        width: 100% !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    .social-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .social-links a {
        flex: 1 1 40% !important; /* Two columns on mobile */
        text-align: center !important;
        padding: 12px 5px !important;
        font-size: 12px !important;
    }

