* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}

/* Ensure text elements have proper cursor */
p, h1, h2, h3, h4, h5, h6, span, li, td, th, label, a {
cursor: text;
}

/* But keep pointer cursor for interactive elements */
button, .back-btn, .explore-btn, .chapter-item, .close, a[href], input, select, textarea {
cursor: pointer;
}

/* Images should not be selectable but should have pointer cursor */
img, video, canvas {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
}

/* Hero image should have default cursor */
.hero-image {
cursor: default !important;
}

.hero-image-container {
cursor: default !important;
}

:root {
--primary-color: #ff00ff;
--secondary-color: #00ffff;
--dark-bg: #0a0a0a;
--card-bg: #1a1a1a;
--text-primary: #ffffff;
--text-secondary: #b0b0b0;
--accent-red: #ff0044;
--accent-purple: #8b00ff;

/* Typography Variables */
--font-primary: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
--font-secondary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

/* Heading Sizes */
--h1-size: 4rem;
--h2-size: 3rem;
--h3-size: 2rem;
--p-size: 1rem;

/* Letter Spacing */
--h1-spacing: 5px;
--h2-spacing: 3px;
--h3-spacing: 2px;
}

/* Avinyl font */
@font-face {
font-family: 'Avinyl';
src: url('anvyl.otf') format('opentype');
font-weight: normal;
font-style: normal;
font-display: swap;
}

/* VCR OSD Mono font */
@font-face {
font-family: 'VCR OSD Mono';
src: url('vcr_osd_mono_1.001.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}

/* Jersey15-Regular font */
@font-face {
font-family: 'Jersey15-Regular';
src: url('jersey15-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}

body {
font-family: var(--font-secondary);
background: linear-gradient(135deg, #00DDC5 0%, #15038C 50%, #E0026E 100%);
color: var(--text-primary);
overflow-x: hidden;
line-height: 1.6;
}

/* Unified Typography System - Only for paragraphs */
p {
font-size: var(--p-size);
font-family: var(--font-secondary);
color: var(--text-primary);
line-height: 1.6;
margin-bottom: 1rem;
}

/* Unified Button System */
.btn {
background: transparent;
color: var(--text-primary);
border: 2px solid var(--text-primary);
padding: 1rem 2rem;
font-size: 1rem;
font-weight: bold;
letter-spacing: 2px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
font-family: var(--font-primary);
border-radius: 10px;
text-decoration: none;
display: inline-block;
position: relative;
overflow: hidden;
}

.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transition: left 0.3s ease;
}

.btn:hover::before {
left: 100%;
}

.btn:hover {
background: var(--text-primary);
color: var(--dark-bg);
transform: translateY(-2px);
}

.btn-primary {
background: transparent;
border-color: var(--text-primary);
color: var(--text-primary);
}

.btn-primary:hover {
background: var(--text-primary);
color: var(--dark-bg);
}

.btn-secondary {
background: transparent;
border-color: var(--text-primary);
color: var(--text-primary);
}

.btn-secondary:hover {
background: var(--text-primary);
color: var(--dark-bg);
}

/* Animated background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: 
    radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 0, 255, 0.1) 0%, transparent 50%);
animation: backgroundPulse 10s ease-in-out infinite;
z-index: -1;
}

@keyframes backgroundPulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}

/* Header */
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(0, 0, 0, 0.7);
border-bottom: none;
z-index: 1000;
padding: 0.8rem 0;
}

/* Explicitly disable animations for header */
header,
header * {
opacity: 1 !important;
transform: none !important;
transition: none !important;
animation: none !important;
}

header.scrolled {
background: rgba(0, 0, 0, 0.7);
border-bottom: none;
}

.header-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
width: calc(100% - 4rem);
}

.logo-container {
display: flex;
align-items: center;
gap: 0;
}

.logo-img {
width: 50px;
height: 50px;
object-fit: contain;
}

.logo-wordmark {
height: 25px;
width: auto;
object-fit: contain;
display: block;
}


nav ul {
list-style: none;
display: flex;
gap: 2.5rem;
}

nav a {
color: var(--text-primary);
text-decoration: none;
position: relative;
padding: 0.5rem 1rem;
font-weight: 500;
letter-spacing: 1px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.25rem;
}

nav a.active {
color: rgba(255, 255, 255, 0.7);
}

nav a.active:hover {
color: rgba(255, 255, 255, 0.7);
}

/* Main content */
main {
margin-top: 0;
min-height: calc(100vh - 180px);
}


.section {
display: none;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
   transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section.active {
display: block;
opacity: 1;
transform: translateY(0);
}


/* Unified Section Container */
.section-container {
margin: 0 auto 1.5rem auto;
max-width: 1200px;
width: calc(100% - 4rem);
}

/* Mobile Responsive for Section Container */
@media (max-width: 768px) {
.section-container {
    margin: 0 auto 1rem auto;
    width: calc(100% - 2rem);
}
}

@media (max-width: 480px) {
.section-container {
    margin: 0 auto 0.5rem auto;
    width: calc(100% - 1rem);
}
}

@keyframes fadeIn {
from { 
    opacity: 0; 
    transform: translateY(30px) scale(0.95); 
}
to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
}
}

/* Section content animation */
.section-animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
   transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}

/* Respect reduced motion preference for section animations */
@media (prefers-reduced-motion: reduce) {
.section-animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
}
}

/* Enhanced mobile animations */
@media (max-width: 768px) {
.section {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Reduce motion for better performance on mobile */
@media (prefers-reduced-motion: reduce) {
    .section {
transition: none;
opacity: 1;
transform: none;
    }
}
}

/* OctoCity Section */
#octocity {
padding: 0;
margin-top: 0;
}

#octocity h1,
#octocity h2,
#octocity h3,
#octocity p {
margin-left: 2rem;
margin-right: 2rem;
max-width: calc(100% - 4rem);
}

#octocity h3 {
text-align: center;
}

#octocity p {
text-align: center;
font-size: 1.1rem;
}

#octocity h1 {
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 3rem;
text-align: center;
margin-bottom: 2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 3px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#octocity .content-wrapper {
padding-top: 6rem;
padding-bottom: 2rem;
}


.hero-image-container {
position: relative;
width: 100vw;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
display: flex;
justify-content: center;
align-items: center;
pointer-events: none;
margin-top: 0;
padding-top: 0;
}

.hero-image {
width: 100%;
max-width: none;
height: auto;
object-fit: cover;
border-radius: 0;
display: block;
position: relative;
z-index: 1;
}

.hero-logo-overlay {
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
text-align: center;
}

.hero-logo {
height: 180px;
width: auto;
object-fit: contain;
filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.9)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}


.hero::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.hero-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 1.5rem 2rem;
}

.hero-content::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 15px;
z-index: -1;
}


.hero-content h1 {
font-size: 5rem;
margin: 0;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 5px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
line-height: 1.1;
height: 100%;
}

.hero-line-1 {
font-size: 3rem;
margin-bottom: -1.2rem;
letter-spacing: 8px;
}

.hero-line-2 {
font-size: 6rem;
letter-spacing: 10px;
font-weight: bold;
}



.content-section {
max-width: 100%;
margin: 0;
padding: 0;
}

.intro-section {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
position: relative;
margin: 1.5rem auto;
text-align: center;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}

.intro-section::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.intro-section > * {
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.intro-section h2 {
font-size: 3rem;
margin-bottom: 2rem;
text-transform: uppercase;
letter-spacing: 3px;
color: #ffffff;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.intro-section p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

/* Special styling for CYBERBITEVAMPIRES section */
.intro-section.black-bg {
background: rgba(0, 0, 0, 0.9);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-section.black-bg h2 {
color: #eec85e;
}

/* Roadmap */
.roadmap-container {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
margin: 1.5rem auto;
position: relative;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}

.roadmap-container::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.roadmap-container > * {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}

.roadmap-header {
text-align: center;
margin-bottom: 3rem;
}

.roadmap-header h2 {
font-size: 3rem;
text-align: center;
margin-bottom: 2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 3px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.roadmap-header p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

.steps-title {
font-size: 2.5rem;
color: #ffff00;
text-transform: uppercase;
letter-spacing: 3px;
text-align: center;
margin-bottom: 2rem;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.steps-container {
margin-bottom: 3rem;
}

.steps-window {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
position: relative;
margin: 1.5rem auto;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}

.steps-window::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}


.steps-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}

.roadmap-step {
background: transparent;
border-radius: 0;
padding: 0;
border: none;
position: relative;
overflow: visible;
transition: none;
margin-bottom: 2rem;
}


.roadmap-step:hover {
transform: none;
border-color: transparent;
}

.step-header {
font-size: 1.8rem;
color: #ffffff;
margin-bottom: 0.2rem;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: normal;
}

.step-status {
font-size: 1.2rem;
color: #ffff00;
margin-top: -0.5rem;
margin-bottom: 0.5rem;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0.9;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.step-content ul {
list-style: none;
padding-left: 0;
}

.step-content li {
padding: 0.25rem 0;
padding-left: 0;
position: relative;
color: #ffffff;
line-height: 1.5;
font-size: 0.95rem;
text-transform: lowercase;
letter-spacing: 0.5px;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
}

.step-content li::before {
content: '•';
position: absolute;
left: -0.8rem;
color: #ffff00;
font-size: 1.1rem;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

.background-activities-container {
margin: 3rem auto 0;
max-width: 1000px;
}

.background-activities-window {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
position: relative;
margin: 1.5rem auto;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
text-align: center;
}

.background-activities-window::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.background-activities-window:hover {
transform: none;
}

.background-activities-window .step-content li {
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
}

.background-activities-window .step-content li::before {
content: '';
position: absolute;
left: -0.5rem;
color: rgba(255, 255, 255, 0.6);
font-size: 1.1rem;
}

.background-activities h3 {
font-size: 1.8rem;
color: #ffffff;
margin-bottom: 0.4rem;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: normal;
}

.activities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
margin-top: 1rem;
}

.activity-item {
background: rgba(255, 255, 255, 0.05);
padding: 1rem;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid transparent;
}

.activity-item:hover {
background: rgba(255, 255, 255, 0.05);
transform: scale(1.05);
border-color: var(--primary-color);
}

/* Collaborations */
.collab-section {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
position: relative;
margin: 1.5rem auto;
text-align: center;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}

.collab-section::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.collab-section > * {
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

.collab-section h2 {
font-size: 3rem;
text-align: center;
margin-bottom: 2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 3px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.collab-section p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

/* Footer */
/* Footer Styles - Example.html inspired */
.footer {
background: #000000;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 7rem;
padding: 4rem 0 3rem 0;
}

/* Explicitly disable animations for footer */
.footer,
.footer * {
opacity: 1 !important;
transform: none !important;
transition: none !important;
animation: none !important;
}

.footer .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.footer-content {
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
text-align: center;
}



.footer-brand-title {
font-family: 'Avinyl', var(--font-primary);
font-size: 2.5rem;
color: var(--text-primary);
text-transform: lowercase;
letter-spacing: 3px;
margin-top: 2rem;
margin-bottom: 0.5rem;
text-align: center;
font-weight: normal;
}

.footer-social {
display: flex;
justify-content: center;
gap: 0.8rem;
flex-wrap: wrap;
}

.footer-social .social-link {
display: inline-block;
}

.footer-social .social-icon {
width: 40px !important;
height: 40px !important;
object-fit: contain;
}

.footer-social .social-link:hover .social-icon {
filter: grayscale(100%) brightness(0.7);
}

.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}

.footer-links a {
color: var(--text-primary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}

.footer-links a:hover {
filter: grayscale(100%) brightness(0.7);
}

.footer-email {
text-align: center;
}

.footer-email a {
color: var(--text-primary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
}

.footer-email a:hover {
text-decoration: underline;
}

.footer-legal {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: 1200px;
margin: 1rem 0;
padding: 1rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-left {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-copyright-left p {
color: var(--text-primary);
font-size: 0.8rem;
letter-spacing: 1px;
font-family: var(--font-primary);
text-transform: uppercase;
margin: 0;
line-height: 1.2;
}

.all-rights {
font-size: 0.7rem !important;
opacity: 0.8;
margin-top: 0.2rem !important;
font-family: var(--font-secondary) !important;
text-transform: none !important;
}

.footer-legal-right {
display: flex;
align-items: center;
gap: 2rem;
}

.legal-links {
display: flex;
gap: 2rem;
}

.legal-link {
color: var(--text-primary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0.8;
}

.legal-link:hover {
filter: grayscale(100%) brightness(0.7);
}

.legal-logo {
display: flex;
align-items: center;
}

.legal-company-logo {
height: 35px;
width: auto;
object-fit: contain;
filter: brightness(0) invert(1);
}

.legal-company-logo:hover {
filter: brightness(0) invert(1) brightness(0.3);
}


.footer-contacts {
margin-bottom: 0.8rem;
}

.footer-contacts-title {
font-size: var(--h3-size);
color: var(--text-primary);
text-transform: uppercase;
letter-spacing: var(--h3-spacing);
font-family: var(--font-primary);
margin-bottom: 1rem;
}

.footer-email a {
color: var(--text-primary);
text-decoration: none;
display: inline-block;
font-size: 0.9rem;
font-weight: 500;
}

.footer-email a:hover {
text-decoration: underline;
}

.footer-socials {
margin: 1.2rem 0;
}

.footer-socials-title {
font-size: var(--h3-size);
color: var(--text-primary);
text-transform: uppercase;
letter-spacing: var(--h3-spacing);
font-family: var(--font-primary);
margin-bottom: 1rem;
}

.social-links {
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}

.social-link {
display: inline-block;
transition: all 0.3s ease;
border-radius: 50%;
padding: 0.3rem;
}

.social-link:hover {
transform: translateY(-2px) scale(1.05);
}

.social-icon:not(.footer-social .social-icon) {
width: 28px;
height: 28px;
object-fit: contain;
transition: all 0.3s ease;
}

.footer-copyright {
color: var(--text-primary);
margin-top: 1.2rem;
font-size: 1rem;
letter-spacing: 1px;
font-family: var(--font-primary);
text-transform: uppercase;
}

@media (max-width: 768px) {
.footer {
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer .container {
    padding: 0 1rem;
}

.footer-content {
    gap: 1.5rem;
}

.footer-brand-title {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-social .social-icon {
    width: 36px !important;
    height: 36px !important;
}

.footer-social .social-link:hover .social-icon {
    filter: grayscale(100%) brightness(0.7);
}

.footer-links {
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
}

.footer-email a {
    font-size: 0.8rem;
}

.footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    max-width: 100%;
}

.footer-copyright-left {
    align-items: center;
}

.footer-legal-right {
    flex-direction: column;
    gap: 1rem;
}

.legal-links {
    gap: 1.5rem;
}

.legal-link {
    font-size: 0.8rem;
}

.legal-company-logo {
    height: 30px;
}

.footer-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-contacts,
.footer-socials {
    text-align: center;
}

.footer-contacts-title,
.footer-socials-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    letter-spacing: var(--h3-spacing);
}

.footer-email a {
    font-size: 0.9rem;
    word-break: break-all;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
}

.footer-email a:hover {
    text-decoration: underline;
}

.social-links {
    gap: 0.6rem;
    justify-content: center;
}

.social-icon:not(.footer-social .social-icon) {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

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


}

/* Extra Small Mobile Devices - Footer */
@media (max-width: 480px) {
.footer {
    padding: 1.5rem 0.5rem;
    margin-top: 3rem;
}

.footer .container {
    padding: 0 0.5rem;
}

.footer-content {
    gap: 1rem;
}

.footer-brand-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.footer-social .social-icon {
    width: 32px !important;
    height: 32px !important;
}

.footer-social .social-link:hover .social-icon {
    filter: grayscale(100%) brightness(0.7);
}

.footer-links {
    gap: 1rem;
}

.footer-links a {
    font-size: 0.7rem;
}

.footer-email a {
    font-size: 0.8rem;
}

.footer-legal {
    gap: 0.8rem;
}

.footer-legal-right {
    gap: 0.8rem;
}

.legal-links {
    gap: 1rem;
}

.legal-link {
    font-size: 0.7rem;
}

.legal-company-logo {
    height: 25px;
}


.footer-content {
    gap: 1.5rem;
}

.footer-contacts-title,
.footer-socials-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
}

.footer-email a {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
}

.footer-email a:hover {
    text-decoration: underline;
}

.social-links {
    gap: 0.5rem;
}

.social-icon:not(.footer-social .social-icon) {
    width: 24px;
    height: 24px;
}

}


.glitch {
animation: glitch 1s linear infinite;
}

/* Mobile Menu */
.mobile-menu-toggle {
display: none;
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 30px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1001;
}

.mobile-menu-toggle span {
width: 100%;
height: 3px;
background: #ffffff;
border-radius: 2px;
transition: all 0.3s ease;
transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: rgba(10, 10, 10, 0.95);
border-left: 1px solid rgba(255, 255, 255, 0.1);
transition: right 0.3s ease;
z-index: 1000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.mobile-menu.active {
right: 0;
}

.mobile-menu ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 2rem;
text-align: center;
}

.mobile-menu a {
color: var(--text-primary);
text-decoration: none;
font-size: 1.5rem;
font-weight: 500;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-transform: uppercase;
transition: all 0.3s ease;
padding: 1rem;
display: block;
}

.mobile-menu a:hover,
.mobile-menu a.active {
color: var(--text-secondary);
}

.mobile-menu-close {
position: absolute;
top: 2rem;
right: 2rem;
background: none;
border: none;
color: #ffffff;
font-size: 2rem;
cursor: pointer;
padding: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
/* Header Mobile Optimization */
.header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 2rem);
}

.logo-container img {
    max-width: 80px;
    height: auto;
}

.mobile-menu-toggle {
    display: flex;
    width: 30px;
    height: 30px;
}

nav {
    display: none;
}

/* Hero Section Mobile Optimization */
.hero-image-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    margin-top: 0;
    padding-top: 0;
}

.hero-image {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.hero-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.9)) drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
}

.intro-section {
    padding: 2rem 1.5rem;
    min-height: 350px;
}

.hero-content {
    padding: 1.5rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-line-1 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: -0.8rem;
}

.hero-line-2 {
    font-size: 2.8rem;
    letter-spacing: 3px;
}

/* Typography Mobile Optimization */
.intro-section h2,
.roadmap-header h2,
.collab-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.steps-title {
    font-size: 1.5rem;
}

/* Content Sections Mobile Optimization */
.content-section {
    padding: 1.5rem 1rem;
}

.intro-section {
    width: calc(100% - 2rem);
    margin: 1rem auto;
    padding: 1.5rem;
}

.collab-section {
    margin: 1rem auto;
    padding: 2rem 1.5rem;
    min-height: 350px;
}


/* Grid Layouts Mobile */
.steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.roadmap-container,
.background-activities-container {
    max-width: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
}

.steps-window,
.background-activities-window {
    margin: 1rem auto;
    padding: 2rem 1.5rem;
    min-height: 350px;
}

/* Button Mobile Optimization */
.btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Modal Mobile Optimization */
.modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 90vh;
    overflow-y: auto;
}

/* General Mobile Improvements */
body {
    font-size: 14px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
.header-content {
    width: calc(100% - 1rem);
}

.hero-image {
    width: 100vw;
    max-width: none;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    position: relative;
    z-index: 1;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
    padding-top: 0;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.9)) drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
}

.intro-section {
    padding: 1.5rem 1rem;
    min-height: 300px;
}

.hero-content {
    padding: 1rem 1.5rem;
}

.hero h1 {
    font-size: 2rem;
}

.hero-line-1 {
    font-size: 1.2rem;
}

.hero-line-2 {
    font-size: 2.2rem;
}

.intro-section h2,
.roadmap-header h2,
.collab-section h2 {
    font-size: 2rem;
}

.content-section {
    padding: 1rem 0.5rem;
}

.intro-section,
.collab-section {
    margin: 0.5rem auto;
    padding: 1.5rem 1rem;
    min-height: 300px;
}

.btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
}

.modal-content {
    width: 98%;
    margin: 2% auto;
}

/* Touch-friendly improvements */
.btn, .btn-primary, .btn-secondary, .buy-btn, .cassette-btn, .read-story-btn, .story-btn, .vacancy-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Improved text readability */
body {
    font-size: 16px;
    line-height: 1.6;
}

/* Better spacing for touch interfaces */
.nav-link, .mobile-nav-link {
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Improved modal accessibility */
.modal {
    padding: 1rem;
}

/* Better form elements */
input, textarea, select {
    font-size: 16px;
    padding: 12px;
    min-height: 44px;
}

/* Improved scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Better focus states for accessibility */
.btn:focus,
.nav-link:focus,
.modal-close:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
}

/* Placeholder sections for other tabs */
.placeholder-section {
min-height: 50vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 2rem;
}

.placeholder-section h2 {
font-size: 3rem;
margin-bottom: 2rem;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
letter-spacing: 3px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.placeholder-section p {
font-size: 1.1rem;
color: #ffffff;
max-width: 600px;
}

/* Glitch Shop Section */
.glitch-shop-page {
min-height: 100vh;
padding: 0;
}

.shop-header {
text-align: center;
margin-bottom: 4rem;
margin-top: 2rem;
padding-top: 2rem;
}

.glitch-shop-hero {
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
margin: 1.5rem auto;
max-width: 1200px;
width: 100%;
padding: 3rem 2rem;
}


.glitch-shop-hero::after {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 15px;
z-index: -1;
}

.glitch-shop-content {
text-align: center;
z-index: 1;
position: relative;
max-width: 1000px;
padding: 3rem;
}

.shop-logo {
width: 100%;
max-width: 400px;
height: auto;
object-fit: contain;
margin: 0 auto 2rem;
display: block;
}

.shop-description {
background: transparent;
backdrop-filter: none;
border-radius: 0;
padding: 0;
border: none;
font-size: 1.1rem;
line-height: 1.8;
color: #ffffff;
margin-bottom: 0;
}

.shop-description p {
margin-bottom: 1.5rem;
}

.meet-octocoin {
text-align: center;
margin-bottom: 2rem;
padding: 0;
}


.meet-description {
font-size: 1.1rem;
line-height: 1.8;
color: #ffffff;
margin-bottom: 3rem;
}

.octocoin-main-container {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
margin: 1.5rem auto;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
position: relative;
overflow: hidden;
}

.octocoin-main-container::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

/* Portal Cassette Main Container */
.portal-cassette-main-container {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
margin: 1.5rem auto;
max-width: 1200px;
width: 100%;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}

.portal-cassette-main-container::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.meet-portal-cassette {
text-align: center;
margin-bottom: 2rem;
padding: 0;
}

.octocoin-section {
background: #000000;
border-radius: 20px;
padding: 4rem;
border: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 0;
}

.octocoin-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.octocoin-info {
animation: fadeInLeft 0.6s ease;
}

@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-30px); }
to { opacity: 1; transform: translateX(0); }
}

.octocoin-title {
font-size: 2.5rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-bottom: 2rem;
}

.octocoin-description {
font-size: 1.1rem;
line-height: 1.8;
color: #ffffff;
margin-bottom: 2rem;
}

.octocoin-features {
list-style: none;
padding: 0;
}

.octocoin-features li {
padding: 0.5rem 0;
color: #ffffff;
font-size: 1rem;
}

.octocoin-features li::before {
content: '•';
color: #ffffff;
font-weight: bold;
margin-right: 0.5rem;
}

.octocoin-video-container {
position: relative;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
animation: fadeInRight 0.6s ease;
}

@keyframes fadeInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}

#octocoin-video {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 15px;
pointer-events: none;
user-select: none;
}

.buy-buttons {
display: flex;
gap: 1rem;
margin-top: 2rem;
}

/* Portal Cassette Section Styles */
.portal-cassette-section {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.portal-cassette-section::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
transition: left 0.6s ease;
}

.portal-cassette-section:hover::before {
left: 100%;
}

.portal-cassette-section:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.3);
}

.portal-cassette-content {
display: grid;
grid-template-columns: 1fr 450px;
gap: 3rem;
align-items: center;
}

.portal-cassette-info {
animation: fadeInLeft 0.6s ease;
z-index: 2;
}

.portal-cassette-title {
font-size: 2.5rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-bottom: 2rem;
}

.portal-cassette-description {
font-size: 1.1rem;
line-height: 1.8;
color: #ffffff;
margin-bottom: 2rem;
}

.portal-cassette-description p {
margin-bottom: 1rem;
}

.portal-cassette-visual {
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

.portal-cassette-image {
width: 400px;
height: auto;
max-height: 240px;
object-fit: contain;
pointer-events: none;
user-select: none;
transition: transform 0.3s ease;
}

.portal-cassette-section:hover .portal-cassette-image {
transform: scale(1.05) rotateY(5deg);
}

/* Unified Button Style - Base for all buttons */
.unified-btn,
.buy-btn, 
.cassette-btn,
.read-btn {
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 1rem 2rem;
font-size: 1rem;
font-weight: bold;
letter-spacing: 2px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-radius: 10px;
text-decoration: none;
display: inline-block;
position: relative;
overflow: hidden;
}

.unified-btn::before,
.buy-btn::before, 
.cassette-btn::before,
.read-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transition: left 0.3s ease;
}

.unified-btn:hover::before,
.buy-btn:hover::before, 
.cassette-btn:hover::before,
.read-btn:hover::before {
left: 100%;
}

.unified-btn:hover,
.buy-btn:hover, 
.cassette-btn:hover,
.read-btn:hover {
background: #ffffff;
color: #000000;
transform: translateY(-2px);
}

.unified-btn.secondary,
.buy-btn.secondary, 
.cassette-btn.secondary {
color: #ffffff;
border-color: #ffffff;
}

.unified-btn.secondary:hover,
.buy-btn.secondary:hover, 
.cassette-btn.secondary:hover {
background: #ffffff;
color: #000000;
}

/* Crowdfunding Section */
.crowdfunding-section {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem 2rem;
margin: 1.5rem auto;
border: 1px solid rgba(255, 255, 255, 0.1);
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
position: relative;
overflow: hidden;
}

.crowdfunding-section::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.crowdfunding-header {
text-align: center;
margin-bottom: 3rem;
}


.crowdfunding-header p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1rem;
color: #ffffff;
}

.cassettes-container {
display: flex;
flex-direction: column;
gap: 3rem;
}

.cassette-item {
display: grid;
grid-template-columns: 1fr 450px;
gap: 3rem;
align-items: center;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.cassette-item::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
transition: left 0.6s ease;
}

.cassette-item:hover::before {
left: 100%;
}

.cassette-item:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.3);
}

.cassette-info {
z-index: 2;
}

.cassette-title {
font-size: 2rem;
margin-bottom: 1rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cassette-description {
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
margin-bottom: 2rem;
}

.funding-progress {
margin-bottom: 2rem;
}

.progress-bar {
width: 100%;
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
overflow: hidden;
margin-bottom: 0.5rem;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
border-radius: 4px;
transition: width 0.8s ease;
position: relative;
}

.progress-fill::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: progressShine 2s infinite;
}

@keyframes progressShine {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

.funding-stats {
display: flex;
justify-content: center;
align-items: center;
font-size: 0.9rem;
color: #ffffff;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
padding: 0.8rem 1rem;
margin: 1rem 0;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.octocoin-amount {
color: #ffffff;
font-weight: bold;
font-size: 1rem;
}

.raised {
color: #ffffff;
font-weight: bold;
}

.cassette-actions {
display: flex;
gap: 1rem;
}



.about-btn {
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 1rem 2rem;
font-size: 1rem;
font-weight: bold;
letter-spacing: 2px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
text-decoration: none;
display: inline-block;
position: relative;
overflow: hidden;
}

.about-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transition: left 0.3s ease;
}

.about-btn:hover::before {
left: 100%;
}

.about-btn:hover {
background: #ffffff;
color: #000000;
transform: translateY(-2px);
}


/* Cassette Visual */
.cassette-visual {
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
}

.cassette-image {
width: 400px;
height: auto;
max-height: 240px;
object-fit: contain;
border-radius: 10px;
transition: all 0.3s ease;
}

.cassette-item:hover .cassette-image {
transform: scale(1.05) rotateY(5deg);
}

/* OctoCoin Modal Styles */
.octocoin-modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
animation: fadeIn 0.3s ease;
}

.octocoin-modal-content {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
margin: 2% auto;
padding: 0;
width: 90%;
max-width: 1000px;
max-height: 90vh;
overflow-y: auto;
position: relative;
animation: slideIn 0.3s ease;
}

.octocoin-modal-header {
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 20px 20px 0 0;
}

.octocoin-modal-title {
font-size: 2.5rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 3px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
}

.octocoin-modal-close {
background: none;
border: none;
color: #ffffff;
font-size: 3rem;
font-weight: bold;
cursor: pointer;
padding: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
}

.octocoin-modal-close:hover {
background: rgba(255, 255, 255, 0.1);
transform: scale(1.1);
}

.octocoin-modal-body {
padding: 3rem;
max-height: 70vh;
overflow-y: auto;
}

.octocoin-subtitle {
font-size: 1.8rem;
color: #ffffff;
margin: 2rem 0 1.5rem 0;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.octocoin-step {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
margin-bottom: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.octocoin-step:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.octocoin-step h4 {
font-size: 1.3rem;
color: #ffffff;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.octocoin-step ul,
.octocoin-step ol {
margin: 0;
padding-left: 1.5rem;
}

.octocoin-step li {
font-size: 1.1rem;
line-height: 1.6;
color: #ffffff;
margin-bottom: 0.5rem;
}

.octocoin-section-container {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem;
margin-bottom: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.octocoin-section-container h3 {
font-size: 1.8rem;
color: #ffffff;
margin: 0 0 2rem 0;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.octocoin-section-container p {
font-size: 1.1rem;
line-height: 1.8;
color: #ffffff;
margin-bottom: 1.5rem;
}

.octocoin-section-container ul,
.octocoin-section-container ol {
margin: 0 0 1.5rem 0;
padding-left: 1.5rem;
}

.octocoin-section-container li {
font-size: 1.1rem;
line-height: 1.6;
color: #ffffff;
margin-bottom: 0.5rem;
}

.octocoin-warning {
background: rgba(255, 165, 0, 0.1);
border: 2px solid rgba(255, 165, 0, 0.5);
border-radius: 10px;
padding: 1.5rem;
margin: 1.5rem 0;
}

.octocoin-warning p {
font-size: 1.1rem;
line-height: 1.6;
color: #ffa500;
margin-bottom: 0.5rem;
}

.wallet-address {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 1rem;
font-family: 'Courier New', monospace;
font-size: 1rem;
color: #ffffff;
word-break: break-all;
margin: 1rem 0;
}

.refund-button-container {
text-align: center;
margin-top: 2rem;
}

.refund-btn {
background: linear-gradient(135deg, #ff6b6b, #ee5a24);
color: #ffffff;
padding: 1.2rem 2.5rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
}

.refund-btn:hover {
transform: translateY(-3px);
background: linear-gradient(135deg, #ff5252, #d63031);
}

.octocoin-divider {
text-align: center;
font-size: 2rem;
color: var(--primary-color);
margin: 2rem 0;
}

/* Custom Shape Divider Styles */
.custom-shape-divider-top-1761746958 {
position: relative;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
margin-top: -60px;
z-index: 1;
}

.custom-shape-divider-top-1761746958 svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 60px;
}

.custom-shape-divider-top-1761746958 .shape-fill {
fill: #000000;
}

/* Custom Shape Divider Top 1761755478 Styles */
.custom-shape-divider-top-1761755478 {
position: relative;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
margin-top: -120px;
z-index: 1;
/* Disable any animations/transitions for dividers */
animation: none !important;
transition: none !important;
}

.custom-shape-divider-top-1761755478 svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 120px;
animation: none !important;
transition: none !important;
}

.custom-shape-divider-top-1761755478 .shape-fill {
fill: #000000;
animation: none !important;
transition: none !important;
}

/* Footer divider - опущен ниже */
.custom-shape-divider-top-1761755478.footer-divider {
position: relative;
margin-top: -120px;
top: 113px;
}

/* Custom Shape Divider Bottom Styles */
.custom-shape-divider-bottom-1761747182 {
position: relative;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
margin-bottom: -1px;
z-index: 1;
}

.custom-shape-divider-bottom-1761747182 svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 60px;
}

.custom-shape-divider-bottom-1761747182 .shape-fill {
fill: #000000;
}

/* Custom Shape Divider for COLLABORATIONS - without negative margin */
.custom-shape-divider-top-1761746958.collaborations-divider {
margin-top: 0;
}


/* Cassette Modal Styles */
.cassette-modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
animation: fadeIn 0.3s ease;
}

.cassette-modal-content {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
margin: 2% auto;
padding: 0;
width: 90%;
max-width: 800px;
max-height: 90vh;
overflow-y: auto;
position: relative;
animation: slideIn 0.3s ease;
}

.cassette-modal-header {
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 20px 20px 0 0;
}

.cassette-modal-title {
font-size: 2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
}

.cassette-modal-close {
background: none;
border: none;
color: #ffffff;
font-size: 3rem;
font-weight: bold;
cursor: pointer;
padding: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
}

.cassette-modal-close:hover {
background: rgba(255, 255, 255, 0.1);
transform: scale(1.1);
}

.cassette-modal-body {
padding: 3rem;
max-height: 70vh;
overflow-y: auto;
}

.cassette-section-container {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem;
margin-bottom: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.cassette-section-container h3 {
font-size: 1.8rem;
color: #ffffff;
margin: 0 0 2rem 0;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cassette-section-container p {
font-size: 1.1rem;
line-height: 1.8;
color: #ffffff;
margin-bottom: 1.5rem;
}

.cassette-section-container ol {
margin: 0 0 1.5rem 0;
padding-left: 1.5rem;
}

.cassette-section-container li {
font-size: 1.1rem;
line-height: 1.6;
color: #ffffff;
margin-bottom: 0.5rem;
}

.cassette-section-container ul {
margin: 0.5rem 0 1rem 0;
padding-left: 1.5rem;
}

.wallet-address {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 1rem;
font-family: 'Courier New', monospace;
font-size: 1rem;
color: #ffffff;
word-break: break-all;
margin: 1rem 0;
}

.cassette-links {
display: flex;
gap: 1rem;
margin-top: 2rem;
flex-wrap: wrap;
}

.cassette-link {
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 1rem 2rem;
font-size: 1rem;
font-weight: bold;
letter-spacing: 2px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-radius: 10px;
text-decoration: none;
display: inline-block;
position: relative;
overflow: hidden;
}

.cassette-link::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transition: left 0.3s ease;
}

.cassette-link:hover::before {
left: 100%;
}

.cassette-link:hover {
background: #ffffff;
color: #000000;
transform: translateY(-2px);
}

.octocoin-warning {
background: rgba(255, 165, 0, 0.1);
border: 2px solid rgba(255, 165, 0, 0.5);
border-radius: 10px;
padding: 1.5rem;
margin: 1.5rem 0;
}

.octocoin-warning p {
font-size: 1.1rem;
line-height: 1.6;
color: #ffa500;
margin-bottom: 0.5rem;
}

.wallet-address {
font-family: 'Courier New', monospace;
font-size: 1rem;
color: var(--primary-color);
background: rgba(0, 0, 0, 0.5);
padding: 1rem;
border-radius: 8px;
border: 1px solid rgba(0, 255, 255, 0.3);
word-break: break-all;
margin: 1rem 0;
}

.refund-button-container {
text-align: center;
margin: 2rem 0;
}

.refund-btn {
display: inline-block;
background: #ff0000;
color: #ffffff;
border: 2px solid #ff0000;
padding: 1.2rem 3rem;
font-size: 1.2rem;
font-weight: bold;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-radius: 8px;
}

.refund-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
transition: left 0.3s ease;
}

.refund-btn:hover::before {
left: 100%;
}

.refund-btn:hover {
transform: translateY(-2px);
background: #cc0000;
border-color: #cc0000;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes slideIn {
from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
}
to { 
    opacity: 1;
    transform: translateY(0) scale(1);
}
}

/* Page Load Animation */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Initial state for animated elements */
.animate-on-load {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
   transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-load.animated {
opacity: 1;
transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-load[data-delay="0"] { transition-delay: 0s; }
.animate-on-load[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-load[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-load[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-load[data-delay="4"] { transition-delay: 0.4s; }
.animate-on-load[data-delay="5"] { transition-delay: 0.5s; }
.animate-on-load[data-delay="6"] { transition-delay: 0.6s; }
.animate-on-load[data-delay="7"] { transition-delay: 0.7s; }
.animate-on-load[data-delay="8"] { transition-delay: 0.8s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
.animate-on-load {
    opacity: 1;
    transform: none;
    transition: none;
}
}

/* Glitch Shop Mobile Responsive */
@media (max-width: 768px) {
.glitch-shop-page {
    padding: 0;
}

.glitch-shop-hero {
    padding: 1.5rem 1rem;
    min-height: 60vh;
}

.glitch-shop-content {
    padding: 1rem;
}

.shop-header {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 1rem;
}

.shop-logo {
    max-width: 250px;
    margin-bottom: 1rem;
}

.shop-description {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.octocoin-main-container {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.meet-octocoin {
    margin-bottom: 1rem;
    padding: 0;
}

.portal-cassette-main-container {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.meet-portal-cassette {
    margin-bottom: 1rem;
    padding: 0;
}

.meet-title,
.crowdfunding-header h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.octocoin-section {
    padding: 1.5rem;
}

.octocoin-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.octocoin-info {
    order: 2;
}

.octocoin-video-container {
    order: 1;
    height: 250px;
    margin-bottom: 1rem;
}

#octocoin-video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.octocoin-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.octocoin-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.octocoin-actions {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

/* Portal Cassette Mobile Styles */
.portal-cassette-section {
    padding: 1.5rem;
}

.portal-cassette-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.portal-cassette-info {
    order: 2;
}

.portal-cassette-visual {
    order: 1;
    height: 250px;
    margin-bottom: 1rem;
}

.portal-cassette-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.portal-cassette-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.portal-cassette-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.portal-cassette-description p {
    margin-bottom: 0.8rem;
}

.crowdfunding-section {
    padding: 1.5rem 1rem;
}

.cassette-actions {
    flex-direction: column;
    gap: 0.8rem;
}

.btn,
.btn-primary,
.btn-secondary,
.unified-btn,
.buy-btn, 
.cassette-btn,
.read-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.cassette-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem;
}

.cassette-visual {
    order: -1;
}

.cassette-image {
    max-width: 180px;
    margin: 0 auto;
}

.funding-stats {
    padding: 0.6rem 1rem;
    margin: 0.8rem 0;
    font-size: 0.85rem;
}

.octocoin-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 85vh;
    padding: 0;
}

.octocoin-modal-header {
    padding: 1rem;
}

.octocoin-modal-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.octocoin-modal-close {
    width: 35px;
    height: 35px;
    font-size: 2rem;
}

.octocoin-modal-body {
    padding: 1.5rem;
    max-height: 60vh;
}

.octocoin-subtitle {
    font-size: 1.1rem;
}

.octocoin-step h4 {
    font-size: 1rem;
}

.octocoin-step li {
    font-size: 0.9rem;
    line-height: 1.4;
}

.octocoin-section-container {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.octocoin-section-container h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.octocoin-section-container p,
.octocoin-section-container li {
    font-size: 0.9rem;
    line-height: 1.4;
}

.wallet-address {
    font-size: 0.8rem;
    padding: 0.6rem;
    word-break: break-all;
}

.refund-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.cassette-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 85vh;
    padding: 0;
}

.cassette-modal-header {
    padding: 1rem;
}

.cassette-modal-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.cassette-modal-close {
    width: 35px;
    height: 35px;
    font-size: 2rem;
}

.cassette-modal-body {
    padding: 1.5rem;
    max-height: 60vh;
}

.cassette-section-container {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.cassette-section-container h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.cassette-section-container p,
.cassette-section-container li {
    font-size: 0.9rem;
    line-height: 1.4;
}

.cassette-links {
    flex-direction: column;
    gap: 0.8rem;
}

.cassette-link {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
}

/* Extra Small Mobile Devices - Glitch Shop */
@media (max-width: 480px) {
.glitch-shop-page {
    padding: 0;
}

.glitch-shop-hero {
    padding: 1rem 0.5rem;
    min-height: 50vh;
}

.shop-logo {
    max-width: 200px;
}

.meet-title,
.crowdfunding-header h2 {
    font-size: 2rem;
}

.octocoin-main-container {
    padding: 1rem;
}

.portal-cassette-main-container {
    padding: 1rem;
}

.octocoin-section {
    padding: 1rem;
}

.octocoin-content {
    padding: 0 0.5rem;
    gap: 0.8rem;
}

.octocoin-video-container {
    height: 200px;
    margin-bottom: 0.8rem;
}

#octocoin-video {
    max-width: 100%;
}

.octocoin-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.octocoin-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.octocoin-actions {
    margin-top: 0.8rem;
    gap: 0.6rem;
}

/* Portal Cassette Extra Small Mobile Styles */
.portal-cassette-section {
    padding: 1rem;
}

.portal-cassette-content {
    padding: 0 0.5rem;
    gap: 0.8rem;
}

.portal-cassette-visual {
    height: 200px;
    margin-bottom: 0.8rem;
}

.portal-cassette-image {
    max-width: 100%;
}

.portal-cassette-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.portal-cassette-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.portal-cassette-description p {
    margin-bottom: 0.6rem;
}

.cassette-item {
    padding: 1rem;
}

.cassette-image {
    max-width: 150px;
}

.funding-stats {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
}

.octocoin-modal-content,
.cassette-modal-content {
    width: 98%;
    margin: 2% auto;
}

.octocoin-modal-header,
.cassette-modal-header {
    padding: 0.8rem;
}

.octocoin-modal-body,
.cassette-modal-body {
    padding: 1rem;
}
}

/* Lore Section Styles */
.lore-hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
width: 100%;
}

.lore-hero::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.lore-hero::after {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 15px;
z-index: -1;
}

@keyframes scanlines {
0% { transform: translateY(0); }
100% { transform: translateY(10px); }
}

.lore-hero-content {
text-align: center;
z-index: 1;
position: relative;
max-width: 1000px;
padding: 2rem;
}

.lore-title {
font-size: 4rem;
margin-bottom: 3rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 5px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lore-intro {
margin: 0;
}

.lore-intro p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

/* Characters Section */
/* Unified Section Container - Base Style */
.unified-section {
background: transparent;
border-radius: 20px;
padding: 3rem 2rem;
margin: 1.5rem auto;
position: relative;
border: 1px solid rgba(255, 255, 255, 0.1);
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}

.characters-section {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
margin: 1.5rem auto;
position: relative;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}

.unified-section::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}

.characters-section::before,
.stories-section::before,
.glitch-shop-hero::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}


.section-title {
font-size: 3rem;
text-align: center;
margin-bottom: 2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 3px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Unified Typography System - Based on OctoCity */
.unified-h2 {
font-size: 3rem;
text-align: center;
margin-bottom: 2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 3px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.unified-p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

/* Apply unified styles to all section headers */
.section-title,
.crowdfunding-header h2,
.meet-title {
font-size: 3rem;
text-align: center;
margin-bottom: 2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 3px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-description,
.crowdfunding-header p,
.meet-description p {
text-align: center;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-size: 1.1rem;
line-height: 1.6;
color: #ffffff;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

.characters-main-container {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 4rem;
border: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 5rem;
position: relative;
}

.characters-showcase {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0;
will-change: transform;
transform: translateZ(0);
}

.character-display {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
min-height: 500px;
will-change: transform, opacity;
transform: translateZ(0);
backface-visibility: hidden;
perspective: 1000px;
}

.character-info {
animation: fadeInLeft 0.6s ease;
}

.character-container {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem;
border: 1px solid rgba(255, 255, 255, 0.1);
height: fit-content;
}

@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-30px); }
to { opacity: 1; transform: translateX(0); }
}

.character-name {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
will-change: opacity, transform;
transform: translateZ(0);
}

.character-container .character-name {
margin-top: 0;
}

.character-description {
font-size: 1.1rem;
line-height: 1.6;
color: #ffffff;
margin-bottom: 2rem;
transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
will-change: opacity, transform;
transform: translateZ(0);
}

.character-container .character-description {
margin-bottom: 2rem;
}



.character-image {
position: relative;
display: flex;
justify-content: center;
align-items: center;
min-width: 500px;
}

.character-portrait-img {
width: auto;
height: auto;
max-width: 500px;
max-height: 500px;
object-fit: contain;
border: none;
border-radius: 20px;
position: relative;
overflow: hidden;
animation: fadeInRight 0.6s ease;
cursor: pointer;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
flex-shrink: 0;
will-change: transform, opacity;
transform: translateZ(0);
backface-visibility: hidden;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}

.character-portrait-img:hover {
transform: scale(1.02) translateZ(0);
}

.character-portrait::after {
display: none;
}

@keyframes fadeInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}

.glitch-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(transparent 50%, rgba(0, 255, 255, 0.1) 50%);
background-size: 100% 4px;
animation: glitchOverlay 5s linear infinite;
opacity: 0.3;
}

@keyframes glitchOverlay {
0% { transform: translateY(0); }
100% { transform: translateY(4px); }
}

.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: none;
color: #ffffff;
font-size: 3rem;
width: auto;
height: auto;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
}

.carousel-prev {
left: -2rem;
}

.carousel-next {
right: -2rem;
}

.carousel-btn:hover {
background: transparent;
transform: translateY(-50%) scale(1.1);
color: #b0b0b0;
}

.character-dots {
position: relative;
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}

.dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: #666666;
cursor: pointer;
transition: all 0.3s ease;
border: 1px solid #666666;
}

.dot.active {
width: 14px;
height: 14px;
background: #b0b0b0;
border: 2px solid #b0b0b0;
}

.dot:hover {
background: #b0b0b0;
}

/* Stories Section */
.stories-section {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem 2rem;
margin: 1.5rem auto;
position: relative;
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: hidden;
}


.stories-section::after {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 15px;
z-index: -1;
}

.stories-grid {
display: flex;
flex-direction: column;
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}

.story-item {
display: grid;
grid-template-columns: 1fr 450px;
gap: 3rem;
align-items: center;
background: rgba(0, 0, 0, 0.3);
border-radius: 15px;
padding: 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.story-item::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
transition: left 0.6s ease;
}

.story-item:hover::before {
left: 100%;
}

.story-item:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.3);
}

.story-info {
z-index: 2;
}

.story-info h3 {
font-size: 2rem;
margin-bottom: 1rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.story-info p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

.story-visual {
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
}

.story-visual img {
width: 400px;
height: auto;
max-height: 240px;
object-fit: contain;
border-radius: 10px;
transition: all 0.3s ease;
}

.story-item:hover .story-visual img {
transform: scale(1.05) rotateY(5deg);
}

.story-card {
background: transparent;
border-radius: 0;
overflow: visible;
border: none;
transition: all 0.3s ease;
position: relative;
display: flex;
flex-direction: column;
height: 100%;
}

.story-card::before {
display: none;
}

.story-card:hover {
transform: none;
border-color: transparent;
}

.story-image {
height: 350px;
background: transparent;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.story-logo-img {
width: 100%;
height: 100%;
object-fit: contain;
}

.story-content {
padding: 2rem;
display: flex;
flex-direction: column;
height: 100%;
}

.story-content h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.story-content p {
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
margin-bottom: 1rem;
flex-grow: 1;
}

.story-content .read-btn {
margin-top: auto;
align-self: flex-start;
}


.character-name,
.character-description,
.character-portrait {
transition: opacity 0.3s ease;
}

/* Image Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
animation: fadeIn 0.3s ease;
}

.modal-content {
margin: auto;
display: block;
width: 90%;
max-width: 1200px;
max-height: 90%;
object-fit: contain;
animation: imageModalFadeIn 0.4s ease;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

@keyframes imageModalFadeIn {
from { 
    opacity: 0; 
    transform: translate(-50%, -50%) scale(0.8); 
}
to { 
    opacity: 1; 
    transform: translate(-50%, -50%) scale(1); 
}
}

.close {
position: absolute;
top: 15px;
right: 35px;
color: #ffffff;
font-size: 40px;
font-weight: bold;
cursor: pointer;
transition: color 0.3s ease;
}

.close:hover {
color: var(--text-secondary);
}

/* Lore hero alignment and sizing */
#lore > .content-wrapper:first-of-type {
margin-top: 4rem;
min-height: 70vh;
display: flex;
align-items: center;
}
#lore > .content-wrapper:first-of-type > div {
width: 100%;
}

/* Characters section in Lore */
#lore > .content-wrapper:nth-of-type(2) {
/* Characters section wrapper */
margin-top: 2rem;
margin-bottom: 2rem;
}

/* Push down first blocks on News & Community and Glitch Shop */
#news .news-hero {
margin-top: 4rem;
}
#glitchshop .glitch-shop-hero {
margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
/* Lore section mobile styles */
#lore .content-wrapper h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
}

#lore .content-wrapper p {
    font-size: 1rem !important;
}

/* Lore first section adjustments on tablets/phones */
#lore > .content-wrapper:first-of-type {
    min-height: 60vh;
    margin-top: 2rem;
}
#lore > .content-wrapper:nth-of-type(2) {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#news .news-hero {
    margin-top: 2rem;
}
#glitchshop .glitch-shop-hero {
    margin-top: 2rem;
}

.unified-section,
.characters-section,
.stories-section,
.glitch-shop-hero,
.crowdfunding-section,
.octocoin-main-container,
.portal-cassette-main-container,
.collab-section,
.steps-window,
.background-activities-window {
    margin: 1rem auto;
    padding: 2rem 1.5rem;
    min-height: 350px;
}

.characters-main-container {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.character-display {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.character-info {
    order: 2;
    text-align: center;
}

.character-container {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.character-image {
    order: 1;
    min-width: auto;
    margin-bottom: 1rem;
}

.character-portrait-img {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 20px;
}

.character-name {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.character-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.read-story-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.stories-grid {
    padding: 0 1rem;
}

.story-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.story-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.story-visual {
    order: -1;
    margin-bottom: 1rem;
}

.story-visual img {
    max-width: 220px;
    margin: 0 auto;
    border-radius: 10px;
    height: auto;
}

.read-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
}

.story-card {
    margin: 0 1rem;
    padding: 1.5rem;
}

.story-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.story-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.story-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.carousel-btn {
    display: none;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-prev {
    left: 0.5rem;
}

.carousel-next {
    right: 0.5rem;
}

/* Enable swipe on mobile */
.characters-showcase {
    touch-action: pan-y;
}

.character-navigation {
    margin-top: 1rem;
}

.character-indicators {
    gap: 0.5rem;
}

.character-indicator {
    width: 10px;
    height: 10px;
}
}

/* Extra Small Mobile Devices - Lore */
@media (max-width: 480px) {
/* Lore section extra small mobile styles */
#lore .content-wrapper {
    padding: 1rem 0.5rem !important;
}

#lore .content-wrapper h1 {
    font-size: 1.8rem !important;
}

#lore .content-wrapper h2 {
    font-size: 2rem !important;
}

#lore .content-wrapper p {
    font-size: 0.9rem !important;
}

/* Lore first section adjustments on very small phones */
#lore > .content-wrapper:first-of-type {
    min-height: 50vh;
    margin-top: 1rem;
}
#lore > .content-wrapper:nth-of-type(2) {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}
#news .news-hero {
    margin-top: 1rem;
}
#glitchshop .glitch-shop-hero {
    margin-top: 1rem;
}

.unified-section,
.characters-section,
.stories-section,
.glitch-shop-hero,
.crowdfunding-section,
.octocoin-main-container,
.portal-cassette-main-container,
.collab-section,
.steps-window,
.background-activities-window {
    margin: 0.5rem auto;
    padding: 1.5rem 1rem;
    min-height: 300px;
}

.characters-main-container {
    padding: 1rem;
}

.character-container {
    padding: 1rem;
}

.character-portrait-img {
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    border-radius: 20px;
}

.character-name {
    font-size: 1.5rem;
}

.character-description {
    font-size: 0.85rem;
}

.story-item {
    padding: 1rem;
    margin-bottom: 1rem;
}

.story-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.story-info p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.story-visual img {
    max-width: 180px;
    height: auto;
}

.read-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    margin-top: 0.8rem;
    max-width: 240px;
}

.story-card {
    padding: 1rem;
}

.story-title {
    font-size: 1.3rem;
}

.story-description {
    font-size: 0.85rem;
}
}

/* Loading animation */
.loading-dots {
display: inline-block;
}

.loading-dots::after {
content: '...';
animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
0%, 20% { content: '.'; }
40% { content: '..'; }
60%, 100% { content: '...'; }
}

/* About Us Section Styles */
.investors-section,
.development-section,
.faq-section,
.news-community-section {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem 2rem;
margin: 1.5rem auto;
border: 1px solid rgba(255, 255, 255, 0.1);
max-width: 1200px;
width: 100%;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: flex-start;
position: relative;
}

.investors-section::before,
.development-section::before,
.faq-section::before,
.news-community-section::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 20px;
z-index: -1;
}


.member-image {
display: flex;
justify-content: center;
align-items: center;
padding: 0;
}

.member-photo {
width: 340px;
height: 340px;
object-fit: cover;
border-radius: 20px;
transition: all 0.3s ease;
border: none;
}

.member-photo:hover {
transform: scale(1.03);
}

.member-info {
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
background: none;
border: none;
}

.member-name {
font-size: 2.4rem;
color: #ffffff;
margin-bottom: 0.8rem;
margin-top: 0;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.1;
}

.member-role {
color: #ffffff;
font-size: 1.2rem;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
}

.member-description p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

.join-team-content {
text-align: center;
max-width: 1000px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.join-team-content:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.join-team-content p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

.vacancy-btn {
display: inline-block;
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 1rem 2rem;
font-size: 1rem;
font-weight: bold;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-radius: 10px;
margin-top: 2rem;
}

.vacancy-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transition: left 0.3s ease;
}

.vacancy-btn:hover::before {
left: 100%;
}

.vacancy-btn:hover {
background: #ffffff;
color: #000000;
transform: translateY(-2px);
}

.investors-content {
text-align: center;
}

.investor-tab {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
margin: 1.5rem 0;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.investor-tab:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.investor-tab h3 {
font-size: 1.5rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.development-content {
text-align: center;
max-width: 1000px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.development-content:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.development-content p {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1.5rem auto;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

.faq-content {
max-width: 1000px;
margin: 0 auto;
}

.faq-item {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
margin-bottom: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.faq-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.faq-question {
font-size: 1.3rem;
color: #ffffff;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-answer {
font-size: 1.1rem;
line-height: 1.6;
color: #ffffff;
}

/* News & Community Section Styles */
.news-community-page {
min-height: 100vh;
padding: 0;
}

.news-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 20px;
    margin: 1.5rem auto;
    max-width: 1200px;
    width: 100%;
    padding: 3rem 2rem;
}

.news-hero::after {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 15px;
z-index: -1;
}


.news-hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.news-hero .news-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-hero .news-description {
background: transparent;
backdrop-filter: none;
border-radius: 0;
padding: 0;
border: none;
font-size: 1.1rem;
line-height: 1.6;
color: #ffffff;
margin-bottom: 0;
text-align: center;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
opacity: 1;
}

.news-hero .news-description p {
margin: 0 auto 1.5rem auto;
max-width: 800px;
color: #ffffff;
font-size: 1.1rem;
line-height: 1.6;
font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
font-weight: 400;
letter-spacing: 0.5px;
}

.news-hero .news-description strong {
color: #ffffff !important;
}

.latest-news-section,
.community-main-section {
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 3rem 2rem;
margin: 1.5rem auto;
max-width: 1200px;
width: 100%;
position: relative;
}


.news-section,
.community-section {
margin-bottom: 3rem;
}

.subsection-title {
font-size: 2rem;
color: #ffffff;
margin-bottom: 2rem;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
}

.news-header {
text-align: center;
margin-bottom: 2rem;
}

.news-description {
font-size: 1.1rem;
color: #ffffff;
opacity: 0.8;
margin-top: 0.5rem;
}

.news-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 2rem;
margin-bottom: 2rem;
}

.news-item.featured {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 2rem;
margin-bottom: 2rem;
}

.news-item.featured:last-of-type {
margin-bottom: 0;
}

.news-item {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.news-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.news-date {
color: #ffffff;
font-size: 0.9rem;
opacity: 0.7;
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.news-title {
font-size: 1.3rem;
color: #ffffff;
margin-bottom: 1rem;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-item.featured .news-title {
font-size: 2rem;
}

.news-excerpt {
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
opacity: 0.9;
}

.news-media {
width: 100%;
}

.news-video {
width: 100%;
height: auto;
border-radius: 10px;
background: #000;
}

.news-image {
width: 100%;
height: auto;
border-radius: 10px;
object-fit: cover;
cursor: pointer;
transition: transform 0.3s ease;
}

.news-image:hover {
transform: scale(1.02);
}

.news-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}

.news-info {
display: flex;
flex-direction: column;
}

.news-actions {
text-align: center;
margin-top: 2rem;
}

.view-all-btn {
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 1rem 2rem;
text-decoration: none;
text-transform: uppercase;
font-size: 1rem;
font-weight: 600;
letter-spacing: 1px;
border-radius: 8px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
cursor: pointer;
display: inline-block;
}

.view-all-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transition: left 0.3s ease;
z-index: -1;
}

.view-all-btn:hover::before {
left: 100%;
}

.view-all-btn:hover {
background: #ffffff;
color: #000000;
transform: translateY(-2px);
text-decoration: none;
}

.view-all-btn:active {
transform: translateY(0);
}

.view-all-btn:focus {
outline: 2px solid #ffffff;
outline-offset: 2px;
}

/* Community Tabs */
.community-tabs {
display: flex;
justify-content: center;
margin-bottom: 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.community-tab {
background: transparent;
color: #ffffff;
border: none;
padding: 1rem 2rem;
text-transform: uppercase;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.3s ease;
border-bottom: 2px solid transparent;
opacity: 0.7;
}

.community-tab.active {
opacity: 1;
border-bottom-color: #ffffff;
}

.community-tab:hover {
opacity: 1;
}

.community-content {
min-height: 300px;
}

.community-tab-panel {
display: none;
animation: fadeIn 0.3s ease;
}

.community-tab-panel.active {
display: block;
}

.forum-content {
background: rgba(0, 0, 0, 0.4);
border: 2px solid rgba(255, 255, 255, 0.15);
border-radius: 20px;
padding: 2rem;
backdrop-filter: blur(6px);
max-width: 960px;
margin: 0 auto;
}

.forum-header {
text-align: center;
margin-bottom: 2rem;
}

.forum-header h3 {
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 2rem;
letter-spacing: 3px;
text-transform: uppercase;
color: #FF4500;
margin-bottom: 0.5rem;
}

.forum-header p {
color: #ffffff;
font-size: 1rem;
opacity: 0.85;
}

.forum-posts {
display: grid;
gap: 1.5rem;
}

.forum-post {
padding: 1.5rem;
border-radius: 16px;
border: 2px solid rgba(255, 255, 255, 0.15);
background: rgba(255, 255, 255, 0.03);
transition: transform 0.3s ease, border-color 0.3s ease;
}

.forum-post:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
}

.forum-post-link {
display: block;
text-decoration: none;
color: inherit;
}

.forum-post-title {
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.3rem;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 0.75rem;
color: #F5C645;
}

.forum-post-meta {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 1rem;
}

.forum-post-actions {
display: flex;
gap: 1.5rem;
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.6);
margin-top: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.forum-post-action {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.forum-post-action::before {
content: '▲';
font-size: 0.8rem;
color: #FF4500;
}

.forum-post-action.comments::before {
content: '💬';
color: rgba(255, 255, 255, 0.6);
}

.forum-post-excerpt {
font-size: 1rem;
color: #ffffff;
line-height: 1.5;
}

.forum-placeholder {
text-align: center;
color: rgba(255, 255, 255, 0.7);
font-size: 1rem;
}

.forum-actions {
display: flex;
justify-content: center;
margin-top: 2rem;
}

.forum-actions .btn {
min-width: 220px;
}

.tab-title {
font-size: 1.5rem;
color: #ffffff;
margin-bottom: 1rem;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
}

.creation-container .tab-title,
.giveaways-content .tab-title,
.winners-content .tab-title,
.forum-content .tab-title {
font-size: 2rem;
}

.tab-description {
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
opacity: 0.9;
text-align: center;
margin-bottom: 2rem;
}

/* Creation Tab */
.creation-container {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 2rem;
text-align: center;
max-width: 1200px;
width: 100%;
margin: 0 auto;
}

.creation-actions {
margin-top: 2rem;
}

.creation-btn {
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 1rem 2rem;
text-transform: uppercase;
font-size: 1rem;
font-weight: 600;
letter-spacing: 1px;
border-radius: 8px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
cursor: pointer;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.creation-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #ffffff;
transition: left 0.3s ease;
z-index: -1;
}

.creation-btn:hover::before {
left: 0;
}

.creation-btn:hover {
color: #000000;
transform: translateY(-2px);
}

/* Giveaways Tab */
.giveaway-list {
display: grid;
gap: 1.5rem;
max-width: 600px;
margin: 0 auto;
}

.giveaway-item {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.giveaway-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.giveaway-title {
font-size: 1.2rem;
color: #ffffff;
margin-bottom: 0.5rem;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.giveaway-description {
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
opacity: 0.9;
margin-bottom: 1rem;
}

.giveaway-status {
display: inline-block;
background: rgba(0, 255, 0, 0.2);
color: #00ff00;
padding: 0.3rem 0.8rem;
border-radius: 20px;
font-size: 0.8rem;
text-transform: uppercase;
font-weight: 600;
}

/* Winners Tab */
.winners-list {
display: grid;
gap: 1.5rem;
max-width: 600px;
margin: 0 auto;
}

.winner-item {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.winner-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.winner-title {
font-size: 1.2rem;
color: #ffffff;
margin-bottom: 0.5rem;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.winner-description {
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
opacity: 0.9;
margin-bottom: 1rem;
}

.winner-status {
display: inline-block;
background: rgba(255, 215, 0, 0.2);
color: #ffd700;
padding: 0.3rem 0.8rem;
border-radius: 20px;
font-size: 0.8rem;
text-transform: uppercase;
font-weight: 600;
}

/* Forum Tab */
.forum-categories {
display: grid;
gap: 1.5rem;
max-width: 600px;
margin: 0 auto 2rem;
}

.forum-category {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.forum-category:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.category-title {
font-size: 1.2rem;
color: #ffffff;
margin-bottom: 0.5rem;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.category-description {
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
opacity: 0.9;
}

.forum-btn {
background: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 1rem 2rem;
text-transform: uppercase;
font-size: 1rem;
font-weight: 600;
letter-spacing: 1px;
border-radius: 8px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
cursor: pointer;
display: block;
margin: 0 auto;
}

.forum-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #ffffff;
transition: left 0.3s ease;
z-index: -1;
}

.forum-btn:hover::before {
left: 0;
}

.forum-btn:hover {
color: #000000;
transform: translateY(-2px);
}

/* Reddit Widget */
.reddit-widget-container {
margin: 2rem 0;
border-radius: 15px;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.reddit-posts-container {
padding: 2rem;
}

.reddit-header {
margin-bottom: 2rem;
text-align: center;
}

.reddit-header .tab-description {
margin-bottom: 1.5rem;
}

.reddit-widget-header {
text-align: center;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reddit-widget-header h4 {
color: #ffffff;
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.5rem;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reddit-widget-header p {
color: #ffffff;
opacity: 0.7;
font-size: 0.9rem;
margin: 0;
}

.reddit-loading {
text-align: center;
padding: 2rem;
color: #ffffff;
opacity: 0.7;
}

.reddit-loading p {
margin: 0;
font-size: 1rem;
}

.reddit-post-item {
background: rgba(255, 255, 255, 0.03);
border-radius: 10px;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
cursor: pointer;
}

.reddit-post-item:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}

.reddit-post-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}

.reddit-post-author {
font-size: 0.9rem;
color: #ff4500;
font-weight: 600;
}

.reddit-post-meta {
background: rgba(255, 69, 0, 0.2);
color: #ff4500;
padding: 0.3rem 0.8rem;
border-radius: 15px;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
}

.popularity-badge {
background: linear-gradient(45deg, #ff6b35, #f7931e);
color: #ffffff;
padding: 0.2rem 0.5rem;
border-radius: 10px;
font-size: 0.7rem;
font-weight: 700;
margin-left: 0.5rem;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.7; }
100% { opacity: 1; }
}

.reddit-post-content {
margin-top: 1rem;
}

.reddit-post-title {
font-size: 1.1rem;
color: #ffffff;
font-weight: 600;
font-family: 'Avinyl', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-bottom: 0.8rem;
line-height: 1.4;
}

.reddit-post-content p {
color: #ffffff;
opacity: 0.8;
line-height: 1.6;
margin: 0;
}

/* Reddit Media Styles */
.reddit-image-container {
margin: 1rem 0;
border-radius: 10px;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
}

.reddit-image {
width: 100%;
height: auto;
max-height: 300px;
object-fit: cover;
display: block;
}

.reddit-video-container {
margin: 1rem 0;
border-radius: 10px;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
min-height: 150px;
display: flex;
align-items: center;
justify-content: center;
}

.reddit-video-placeholder {
text-align: center;
padding: 2rem;
color: #ffffff;
opacity: 0.7;
}

.video-icon {
font-size: 2rem;
display: block;
margin-bottom: 0.5rem;
}

.reddit-link-container {
margin: 1rem 0;
padding: 1rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 10px;
border-left: 3px solid #ff4500;
}

.reddit-link-text {
color: #ff4500;
font-weight: 600;
margin-bottom: 0.5rem;
}

.reddit-text-content {
color: #ffffff;
opacity: 0.8;
line-height: 1.6;
margin: 0.5rem 0 0 0;
}

.forum-actions {
text-align: center;
margin-top: 2rem;
}

/* Mobile Responsive for About Us */
@media (max-width: 768px) {
.investors-section,
.development-section,
.faq-section,
.news-hero,
.latest-news-section,
.community-main-section {
    padding: 1.5rem 1rem;
    min-height: 60vh;
}

.investors-section h2,
.development-section h2,
.faq-section h2,
.latest-news-section h2,
.community-main-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.news-hero .news-title {
    font-size: 2.2rem;
}

.team-member {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 1.2rem;
    max-width: 95%;
    margin: 1rem auto;
}

.member-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.member-name {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.member-role {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.member-description p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.7rem;
}

.join-team-content,
.development-content {
    padding: 1.2rem;
}

.join-team-content p,
.investors-content p,
.development-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.vacancy-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.faq-item {
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.faq-answer {
    font-size: 0.9rem;
    line-height: 1.4;
}

.faq-content {
    max-width: 100%;
}

.news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-item.featured {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 95%;
    margin: 0 auto;
}

.community-tabs {
    flex-direction: column;
    gap: 0.5rem;
}

.community-tab {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
}

.forum-content {
    padding: 1.5rem;
}

.forum-posts {
    gap: 1rem;
}

.forum-post {
    padding: 1.25rem;
}

.forum-post-title {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-item {
    padding: 1.2rem;
}

.view-all-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.creation-container {
    padding: 1.5rem;
    max-width: 95%;
}

.creation-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}
}

/* Extra Small Mobile Devices - About Us */
@media (max-width: 480px) {
.investors-section,
.development-section,
.faq-section,
.news-hero,
.latest-news-section,
.community-main-section {
    padding: 1rem 0.5rem;
    min-height: 50vh;
}

.investors-section h2,
.development-section h2,
.faq-section h2,
.latest-news-section h2,
.community-main-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-hero .news-title {
    font-size: 2rem;
}

.team-member {
    padding: 1rem;
    max-width: 100%;
}

.member-photo {
    width: 200px;
    height: 200px;
}

.member-name {
    font-size: 1.5rem;
}

.member-role {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-description p {
    font-size: 0.85rem;
}

.join-team-content,
.development-content {
    padding: 1rem;
}

.join-team-content p,
.investors-content p,
.development-content p {
    font-size: 0.85rem;
}

.vacancy-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
}

.faq-item {
    padding: 1rem;
}

.faq-question {
    font-size: 0.9rem;
}

.faq-answer {
    font-size: 0.85rem;
}

.news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.news-item.featured {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    max-width: 95%;
    margin: 0 auto;
}

.community-tabs {
    flex-direction: column;
    gap: 0.3rem;
}

.community-tab {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
}

.subsection-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.news-item {
    padding: 1rem;
}

.news-title {
    font-size: 1.1rem;
}

.news-item.featured .news-title {
    font-size: 1.5rem;
}

.creation-container .tab-title,
.giveaways-content .tab-title,
.winners-content .tab-title,
.forum-content .tab-title {
    font-size: 1.5rem;
}

.view-all-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
}

.creation-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
}

.forum-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
}

.reddit-posts-container {
    padding: 1.5rem;
}

.reddit-post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.reddit-post-title {
    font-size: 1rem;
}
}

/* Mobile adjustments for OctoCity section - What is Cyberbitevampires */
@media (max-width: 768px) {
/* Опускаем разделитель футера на мобильных */
.custom-shape-divider-top-1761755478.footer-divider {
    top: 71px;
}

/* Опускаем футер на мобильных */
.footer {
    margin-top: calc(4rem + 6px);
}
}

@media (max-width: 480px) {
/* Опускаем разделитель футера на маленьких мобильных */
.custom-shape-divider-top-1761755478.footer-divider {
    top: 71px;
}

/* Опускаем футер на маленьких мобильных */
.footer {
    margin-top: calc(3rem + 6px);
}
}

    
