/* THE SORA NETWORK OFFICIAL STYLESHEET - V1.0
*/

body {
  background-color: #000800; /* Your existing dark green/black base */
  
  /* Adds a repeating pattern of small purple/cyan dots */
  background-image: 
    radial-gradient(#d24dff 1px, transparent 1px), 
    radial-gradient(#00FFFF 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  
  color: #32CD32;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

#wrapper{#wrapper {
    width: 95%; /* Change from 900px to 95% for mobile responsiveness */
    max-width: 900px; /* Keeps it from getting too wide on desktop */
    margin: 0 auto;
    border: 5px double #B0B0B0;
    box-sizing: border-box; /* THIS IS THE KEY FIX */
}

    width: 900px;
    margin: 0 auto;
    border: 5px double #B0B0B0; }

h1 {text-align: center; color: #FFFFFF; text-shadow: 0 0 10px #00FF00, 0 0 20px #00FF00; /* Alien Green Glow */ letter-spacing: 4px; text-transform: uppercase;  }
a:hover { text-shadow: 0 0 10px #00FFFF; color: white;}
.video-box {
  width: 100%;
  border: 8px solid #32CD32;
}
.status-icon{
  position: fixed;
  top: 15px;
  right: 15px;
  width: 60px; /* Adjust size as needed */
  z-index: 1000; /* This makes the icon small and out of the way */     
  }
  /* Update starting at line 28 of style.css */
.tab {
  display: inline-block;
  padding: 10px 25px;
  margin: 5px;
  /* The "Pill" shape from the show */
  border-radius: 50px; 
  
  /* iCarly Purple Gradient */
  background: linear-gradient(180deg, #d24dff 0%, #800080 100%);
  
  color: white;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  
  /* 3D "Button" effect */
  border: 2px solid #550055;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.5), 0 4px 0 #4b004b;
  
  transition: all 0.1s ease;
  cursor: pointer;
}

/* Make it "click" when you press it */
.tab:active {
  transform: translateY(3px);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), 0 1px 0 #4b004b;
}

/* Hover effect for extra "pop" */
.tab:hover {
  filter: brightness(1.1);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.6), 0 4px 15px rgba(210, 77, 255, 0.4);
}
@media (max-width: 900px) {
  #wrapper {
    width: 95%; /* Makes the box shrink to fit phone screens */
    margin: 10px auto;
  }
  
  .nav-tabs a {
    display: block; /* Stacks navigation buttons on top of each other for easier tapping */
    margin-bottom: 5px;
  }
}
/* THE SORA NETWORK - FRUTIGER AERO HEADER */
.sora-header {
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%), 
                linear-gradient(45deg, #001a00 0%, #004d00 100%);
    border-bottom: 3px solid #00ff00;
    box-shadow: 0 0 20px #00ff00, inset 0 0 15px rgba(255,255,255,0.5);
    padding: 20px;
    text-align: center;
    border-radius: 0 0 25px 25px; /* Rounded "Pod" shape */
    position: relative;
    overflow: hidden;
}

/* THE "GLOSS" OVERLAY */
.sora-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-5deg);
    border-radius: 50%;
    pointer-events: none;
}

.sora-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern 2000s font */
    color: #ffffff;
    text-shadow: 0 0 10px #00ff00, 2px 2px 2px #000000;
    font-size: 2.5em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.network-status {
    color: #00ff00;
    font-family: monospace;
    font-size: 0.9em;
    margin-top: 5px;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}
/* Fix for text overflowing on mobile */
.post-content, #timeline-container, .diary-entry {
    overflow-wrap: break-word; /* Breaks long hashtags */
    word-wrap: break-word;
    hyphens: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure images and videos don't bust out of the box */
img, iframe, video {
    max-width: 100%;
    height: auto;
}
/* This only triggers for screens smaller than 600px (standard phones) */
@media screen and (max-width: 600px) {
    #wrapper {
        width: 98% !important; /* Uses almost the full screen width */
        margin: 5px auto !important;
        border-width: 3px !important; /* Thinner border looks better on small screens */
    }

    .sora-title {
        font-size: 1.5em !important; /* Shrinks the giant header */
        letter-spacing: 1px !important; /* Brings letters closer so they don't wrap weirdly */
    }

    .post-content, #timeline-container, .diary-entry {
        font-size: 0.85em; /* Makes text slightly smaller for better fit */
        padding: 10px !important;
        overflow-wrap: break-word !important; /* FORCE-BREAKS those long hashtags */
        word-break: break-all; /* Extra insurance for very long strings */
    }

    iframe {
        height: 200px !important; /* Keeps YouTube videos from being too tall on mobile */
    }
}



  
  
  