:root {
    --primary-color: #6e00ff;
    --primary-light: #9b4dff;
    --primary-dark: #4a00b0;
    --secondary-color: #00e5ff;
    --secondary-light: #6effff;
    --secondary-dark: #00b2cc;
    --accent-color: #ff00e5;
    --accent-light: #ff4dff;
    --accent-dark: #b100a0;
    --background-dark: #060a12;
    --background-medium: #0d1620;
    --background-light: #1a2635;
    --text-light: #ffffff;
    --text-medium: #b8c7d9;
    --text-dark: #8494a7;
    --success-color: #00e676;
    --warning-color: #ffea00;
    --error-color: #ff1744;
    --glow-primary: 0 0 10px rgba(110, 0, 255, 0.7), 0 0 20px rgba(110, 0, 255, 0.5), 0 0 30px rgba(110, 0, 255, 0.3);
    --glow-secondary: 0 0 10px rgba(0, 229, 255, 0.7), 0 0 20px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.3);
    --glow-accent: 0 0 10px rgba(255, 0, 229, 0.7), 0 0 20px rgba(255, 0, 229, 0.5), 0 0 30px rgba(255, 0, 229, 0.3);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
    --font-heading: 'Seymour One', sans-serif;
    --font-body: 'Arial', sans-serif;
    --z-index-modal: 2000;
    --z-index-overlay: 1500;
    --z-index-header: 1100;
    --z-index-dropdown: 1000;
    --z-index-footer: 100;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-light);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glow-text {
    text-shadow: var(--glow-primary);
    letter-spacing: 2px;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--background-dark);
}

header {
    background-color: rgba(6, 10, 18, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: var(--z-index-header);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    width: 100%;
    transform: translateZ(0); 
    will-change: transform;
}

header.scrolled {
    background-color: rgba(6, 10, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

header * {
    position: relative;
    z-index: inherit;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-medium);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition-medium);
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(6, 10, 18, 0.3) 0%, rgba(13, 22, 32, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-banner.jpg') center/cover no-repeat;
    z-index: -1;
    filter: brightness(0.3);
}

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

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.platforms {
    margin-top: 3rem;
}

.platforms span {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.platform-icon {
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.platform-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.neon-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
    transition: opacity var(--transition-medium);
}

.neon-button:hover::before {
    opacity: 0.5;
}

.neon-button.blue {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    box-shadow: 0 0 10px var(--secondary-dark), 0 0 20px rgba(0, 178, 204, 0.5);
}

.neon-button.blue:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px var(--secondary-color), 0 0 30px rgba(0, 229, 255, 0.6);
    transform: translateY(-3px);
}

.neon-button.purple {
    background-color: var(--primary-dark);
    color: var(--text-light);
    box-shadow: 0 0 10px var(--primary-dark), 0 0 20px rgba(74, 0, 176, 0.5);
}

.neon-button.purple:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px rgba(110, 0, 255, 0.6);
    transform: translateY(-3px);
}

.neon-button.gray {
    background-color: #2a3a4a;
    color: var(--text-light);
    box-shadow: 0 0 10px rgba(42, 58, 74, 0.7);
}

.neon-button.gray:hover {
    background-color: #3a4a5a;
    box-shadow: 0 0 15px rgba(58, 74, 90, 0.8);
    transform: translateY(-3px);
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.expertise-category:hover .icon-img {
    transform: scale(1.1);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.trailer-section {
    background-color: var(--background-medium);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .features-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(var(--feature-color-rgb), 0.1);
  border: 2px solid var(--feature-color);
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--feature-color);
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(var(--feature-color-rgb), 0.3);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(var(--feature-color-rgb), 0.5);
}


.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-medium);
}

.screenshots-section {
    background-color: var(--background-light);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.screenshot {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.screenshot:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter var(--transition-medium);
}

.screenshot:hover img {
    filter: brightness(1.1);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/newsletter-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    margin-bottom: 1rem;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group button {
    border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.features-section {
    background: linear-gradient(180deg, #0f0f2d 0%, #1a1a4a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/screen5.jpg');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    word-break: break-all;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8957ff 0%, #43e8ff 100%);
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.7);
}

.section-header p {
    font-size: 1.1rem;
    color: #b8b8ff;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    background: linear-gradient(90deg, #8957ff 0%, #43e8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



.feature-card {
    background: rgba(26, 26, 74, 0.5);
    border: 1px solid rgba(67, 232, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(137, 87, 255, 0.1) 0%, rgba(67, 232, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(67, 232, 255, 0.2);
    border-color: rgba(67, 232, 255, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 20px;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(67, 232, 255, 0.4);
}


.feature-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.feature-card p {
    color: #b8b8ff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
    margin-top: 20px;
}

.characters-section {
    background: linear-gradient(180deg, #1a1a4a 0%, #2c1654 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.characters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.character-showcase {
    background: rgba(15, 15, 45, 0.5);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(67, 232, 255, 0.2);
}

.character-nav {
    display: flex;
    background: rgba(15, 15, 45, 0.8);
    border-bottom: 1px solid rgba(67, 232, 255, 0.2);
}

.character-tab {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    color: #b8b8ff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.character-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8957ff 0%, #43e8ff 100%);
    transition: width 0.3s ease;
}

.character-tab:hover {
    color: #fff;
}

.character-tab.active {
    color: #fff;
    background: rgba(67, 232, 255, 0.1);
}

.character-tab.active::after {
    width: 80%;
}

.character-display {
    position: relative;
    min-height: 500px;
}

.character-info {
    display: none;
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    gap: 40px;
}

.character-info.active {
    display: grid;
}

.character-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-visual img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.character-aura {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
    animation: pulse-aura 3s infinite ease-in-out;
}

.shifter-aura {
    background: radial-gradient(circle, rgba(137, 87, 255, 0.7) 0%, rgba(137, 87, 255, 0) 70%);
}

.anchor-aura {
    background: radial-gradient(circle, rgba(67, 232, 255, 0.7) 0%, rgba(67, 232, 255, 0) 70%);
}

.vortex-aura {
    background: radial-gradient(circle, rgba(255, 87, 187, 0.7) 0%, rgba(255, 87, 187, 0) 70%);
}

@keyframes pulse-aura {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.character-details {
    color: #fff;
}

.character-details h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #fff;
}

.character-tagline {
    font-size: 1.1rem;
    color: #43e8ff;
    margin-bottom: 20px;
    font-style: italic;
}

.character-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #b8b8ff;
}

.ability-list {
    display: grid;
    gap: 15px;
}

.ability {
    background: rgba(15, 15, 45, 0.5);
    border: 1px solid rgba(67, 232, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.ability h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #43e8ff;
}

.ability p {
    font-size: 0.9rem;
    color: #b8b8ff;
    line-height: 1.5;
}

.characters-cta {
    text-align: center;
}

.newsletter-section {
    background: linear-gradient(180deg, #2c1654 0%, #0f0f2d 100%);
    padding: 100px 0;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #b8b8ff;
    margin-bottom: 30px;
}

.newsletter-form {
    margin-top: 30px;
}

.form-group {
    display: flex;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
    border: 1px solid rgba(67, 232, 255, 0.3);
    background: rgba(15, 15, 45, 0.5);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: rgba(67, 232, 255, 0.7);
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.3);
}

.form-group button {
    border-radius: 0 50px 50px 0;
    padding: 0 30px;
    border: none;
    cursor: pointer;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.form-consent input {
    margin-top: 5px;
}

.form-consent label {
    font-size: 0.85rem;
    color: #b8b8ff;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .character-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .character-visual {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-section, 
    .characters-section, 
    .newsletter-section {
        padding: 70px 0;
    }
    
    .character-nav {
        flex-direction: column;
    }
    
    .character-tab {
        padding: 15px;
    }
    
    .character-info {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: 50px;
        margin-bottom: 15px;
    }
    
    .form-group button {
        border-radius: 50px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .character-details h3 {
        font-size: 1.8rem;
    }
}
.legal-hero {
    background: linear-gradient(135deg, #0f0f2d 0%, #1a1a4a 50%, #2c1654 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Seymour One', sans-serif;
}

.legal-hero p {
    font-size: 1.2rem;
    color: #b8b8ff;
    max-width: 700px;
    margin: 0 auto;
}

.legal-section {
    padding: 4rem 0;
    background-color: var(--background-dark);
    position: relative;
    z-index: 1;
}

.legal-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background-color: var(--background-medium);
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
}

.legal-content {
    background-color: var(--background-medium);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    color: var(--text-light);
}

.legal-content h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-content a:hover {
    color: var(--secondary-light);
}

.legal-intro {
    background-color: rgba(110, 0, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    margin-bottom: 2rem;
}

.legal-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.info-type {
    background-color: rgba(0, 229, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
}

.info-type h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-type ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.info-type li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.data-rights {
    background-color: rgba(255, 0, 229, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    margin: 1.5rem 0;
}

.data-rights h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.data-rights ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.data-rights li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.data-protection-officer {
    background-color: rgba(0, 230, 118, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    margin: 1.5rem 0;
}

.data-protection-officer h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.data-protection-officer p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-top: 2rem;
    text-align: right;
}

@media (max-width: 992px) {
    .legal-container {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .legal-section {
        padding: 2rem 0;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.75rem;
    }
    
    .info-collection {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.25rem;
    }
    
    .legal-intro {
        padding: 1rem;
    }
    
    .info-type, .data-rights, .data-protection-officer {
        padding: 1rem;
    }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.glow-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5), 0 0 20px rgba(67, 232, 255, 0.3);
}

@media (max-width: 992px) {
    .legal-container {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(67, 232, 255, 0.2);
    }
    
    .table-of-contents ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .table-of-contents li {
        margin-bottom: 0;
    }
    
    .table-of-contents a {
        padding: 8px 15px;
        background: rgba(15, 15, 45, 0.5);
        border-radius: 20px;
        border: 1px solid rgba(67, 232, 255, 0.2);
        font-size: 0.85rem;
    }
    
    .table-of-contents a:hover {
        transform: none;
        background: rgba(67, 232, 255, 0.1);
    }
    
    .legal-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }
    
    .legal-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 80px 0 40px;
    }
    
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 40px 0 80px;
    }
    
    .legal-content {
        padding: 30px;
    }
    
    .legal-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-hero p {
        font-size: 1rem;
    }
    
    .legal-sidebar {
        padding: 20px;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .legal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .legal-actions {
        width: 100%;
    }
    
    .legal-action-button {
        flex: 1;
        text-align: center;
    }
}

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.core-mechanics-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.95) 0%, rgba(16, 23, 41, 0.9) 100%);
    position: relative;
}

.mechanic-card {
    display: flex;
    flex-direction: column;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mechanic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.15);
    border-color: rgba(67, 232, 255, 0.4);
}

.mechanic-video {
    width: 100%;
    height: 300px;
    background: #060a12;
    position: relative;
    overflow: hidden;
}

.mechanic-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mechanic-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1425 0%, #1a2a4a 100%);
    z-index: -1;
}

.mechanic-content {
    padding: 25px;
}

.mechanic-content h3 {
    color: #43e8ff;
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.mechanic-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #d1d7e0;
}

.controls-info {
    margin-top: 20px;
    background: rgba(6, 10, 18, 0.6);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #43e8ff;
}

.controls-info h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.control-mapping {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.control-key {
    background: rgba(67, 232, 255, 0.2);
    color: #43e8ff;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: bold;
    margin-right: 15px;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(67, 232, 255, 0.3);
}

.control-action {
    color: #fff;
}

.dimensions-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(16, 23, 41, 0.9) 0%, rgba(6, 10, 18, 0.95) 100%);
    position: relative;
}

.dimensions-tabs {
    margin-top: 40px;
}

.dimension-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.dimension-tab {
    background: rgba(13, 20, 37, 0.7);
    color: #fff;
    border: 1px solid rgba(67, 232, 255, 0.2);
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.dimension-tab:hover {
    background: rgba(67, 232, 255, 0.1);
    border-color: rgba(67, 232, 255, 0.4);
}

.dimension-tab.active {
    background: rgba(67, 232, 255, 0.2);
    border-color: rgba(67, 232, 255, 0.6);
    color: #43e8ff;
    box-shadow: 0 0 15px rgba(67, 232, 255, 0.3);
}

.dimension-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.dimension-panel.active {
    display: block;
}

.dimension-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dimension-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.dimension-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dimension-showcase:hover .dimension-image img {
    transform: scale(1.05);
}

.dimension-info {
    padding: 30px;
}

.dimension-info h3 {
    color: #43e8ff;
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.dimension-description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.dimension-info h4 {
    color: #8957ff;
    margin: 20px 0 10px;
    font-size: 20px;
}

.dimension-info ul {
    list-style-type: none;
    padding-left: 5px;
}

.dimension-info ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #d1d7e0;
}

.dimension-info ul li::before {
    content: "•";
    color: #43e8ff;
    position: absolute;
    left: 0;
    top: 0;
}

.dimension-info ul li strong {
    color: #fff;
    font-weight: 600;
}

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.dev-timeline-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.95) 0%, rgba(16, 23, 41, 0.9) 100%);
    position: relative;
}

.dev-timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 30px;
}

.dev-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgba(67, 232, 255, 0.8), rgba(137, 87, 255, 0.8));
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(67, 232, 255, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-date {
    position: absolute;
    left: -30px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-date span {
    background: linear-gradient(135deg, #43e8ff 0%, #8957ff 100%);
    color: #060a12;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 15px;
    box-shadow: 0 0 15px rgba(67, 232, 255, 0.5);
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    left: -15px;
    top: 20px;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, rgba(67, 232, 255, 0.8), rgba(137, 87, 255, 0.8));
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.timeline-content {
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.15);
    border-color: rgba(67, 232, 255, 0.4);
}

.timeline-content h3 {
    background: rgba(6, 10, 18, 0.8);
    color: #43e8ff;
    padding: 15px 25px;
    margin: 0;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
    border-bottom: 1px solid rgba(67, 232, 255, 0.2);
}

.dev-milestone-content {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.dev-milestone-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.dev-milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-content:hover .dev-milestone-image img {
    transform: scale(1.05);
}

.dev-milestone-text {
    padding: 25px;
}

.dev-milestone-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #d1d7e0;
}

.dev-milestone-text ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.dev-milestone-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #d1d7e0;
}

.dev-milestone-text ul li::before {
    content: "•";
    color: #43e8ff;
    position: absolute;
    left: 0;
    top: 0;
}

.technical-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(16, 23, 41, 0.9) 0%, rgba(6, 10, 18, 0.95) 100%);
    position: relative;
}

.technical-tabs {
    margin-top: 40px;
}

.technical-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.technical-tab {
    background: rgba(13, 20, 37, 0.7);
    color: #fff;
    border: 1px solid rgba(67, 232, 255, 0.2);
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.technical-tab:hover {
    background: rgba(67, 232, 255, 0.1);
    border-color: rgba(67, 232, 255, 0.4);
}

.technical-tab.active {
    background: rgba(67, 232, 255, 0.2);
    border-color: rgba(67, 232, 255, 0.6);
    color: #43e8ff;
    box-shadow: 0 0 15px rgba(67, 232, 255, 0.3);
}

.technical-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.technical-panel.active {
    display: block;
}

.technical-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.technical-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.technical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.technical-showcase:hover .technical-image img {
    transform: scale(1.05);
}

.technical-info {
    padding: 30px;
}

.technical-info h3 {
    color: #43e8ff;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.technical-info h4 {
    color: #8957ff;
    margin: 25px 0 15px;
    font-size: 20px;
}

.technical-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #d1d7e0;
}

.technical-info ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.technical-info ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #d1d7e0;
}

.technical-info ul li::before {
    content: "•";
    color: #43e8ff;
    position: absolute;
    left: 0;
    top: 0;
}

.technical-info ul li strong {
    color: #fff;
    font-weight: 600;
}

.dev-diary-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.95) 0%, rgba(16, 23, 41, 0.9) 100%);
    position: relative;
}

.dev-diary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.dev-diary-card {
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.dev-diary-card.visible {
    opacity: 1;
    transform: scale(1);
}

.dev-diary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.15);
    border-color: rgba(67, 232, 255, 0.4);
}

.dev-diary-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(6, 10, 18, 0.6);
    border-bottom: 1px solid rgba(67, 232, 255, 0.2);
}

.dev-portrait {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(67, 232, 255, 0.4);
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.3);
    margin-right: 15px;
}

.dev-info {
    flex: 1;
}

.dev-info h3 {
    color: #43e8ff;
    font-size: 20px;
    margin: 0 0 5px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.dev-author {
    color: #fff;
    font-size: 14px;
    margin: 0 0 5px;
}

.dev-date {
    color: #a9b3c9;
    font-size: 12px;
    margin: 0;
}

.dev-diary-content {
    padding: 25px;
}

.dev-diary-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #d1d7e0;
}

.read-more {
    display: inline-block;
    color: #43e8ff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #8957ff;
    text-shadow: 0 0 8px rgba(67, 232, 255, 0.5);
}

.view-all-diaries {
    text-align: center;
    margin-top: 40px;
}

.community-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(16, 23, 41, 0.9) 0%, rgba(6, 10, 18, 0.95) 100%);
    position: relative;
}

.community-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.community-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(67, 232, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.community-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.community-image:hover img {
    transform: scale(1.05);
}

.community-text {
    flex: 1;
    padding: 30px;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.community-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.community-text h3 {
    color: #43e8ff;
    font-size: 24px;
    margin: 0 0 15px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.community-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #d1d7e0;
}

.community-text ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.community-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #d1d7e0;
}

.community-text ul li::before {
    content: "•";
    color: #43e8ff;
    position: absolute;
    left: 0;
    top: 0;
}

.community-cta {
    margin-top: 30px;
    padding: 20px;
    background: rgba(6, 10, 18, 0.5);
    border-radius: 8px;
    border-left: 3px solid #43e8ff;
}

.community-cta p {
    margin-bottom: 15px;
    font-weight: 500;
    color: #fff;
}

.community-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.95) 0%, rgba(16, 23, 41, 0.9) 100%);
    position: relative;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    color: #d1d7e0;
}

.newsletter-form {
    margin-top: 20px;
}

.form-group {
    display: flex;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(67, 232, 255, 0.3);
    background: rgba(6, 10, 18, 0.6);
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: rgba(67, 232, 255, 0.6);
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.2);
}

.form-group button {
    border-radius: 0 4px 4px 0;
    padding: 12px 20px;
}

.form-note {
    font-size: 14px;
    color: #a9b3c9;
    margin-top: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.expertise-category:hover .icon-img {
    transform: scale(1.1);
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #a9b3c9;
    max-width: 700px;
    margin: 0 auto;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

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

@media (min-width: 768px) {
    .dev-milestone-content {
        flex-direction: row;
    }
    
    .dev-milestone-image {
        width: 40%;
        height: auto;
    }
    
    .dev-milestone-text {
        width: 60%;
    }
    
    .technical-showcase {
        flex-direction: row;
    }
    
    .technical-image {
        width: 40%;
        height: auto;
    }
    
    .technical-info {
        width: 60%;
    }
    
    .dev-diary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .dev-diary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .timeline-date span {
        margin-left: 30px;
    }
    
    .timeline-connector {
        width: 45px;
    }
}

.section-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(67, 232, 255, 0.2) 0%, rgba(67, 232, 255, 0) 70%);
    border-radius: 50%;
}
.puzzle-design-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.95) 0%, rgba(16, 23, 41, 0.9) 100%);
    position: relative;
}

.puzzle-design-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.puzzle-design-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(67, 232, 255, 0.2);
}

.puzzle-design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.puzzle-design-image:hover img {
    transform: scale(1.05);
}

.puzzle-design-text {
    flex: 1;
    padding: 20px;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.puzzle-design-text h3 {
    color: #43e8ff;
    font-size: 24px;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.puzzle-design-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #d1d7e0;
}

.combat-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(16, 23, 41, 0.9) 0%, rgba(6, 10, 18, 0.95) 100%);
    position: relative;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.challenge-card {
    display: flex;
    flex-direction: column;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.15);
    border-color: rgba(67, 232, 255, 0.4);
}

.challenge-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.challenge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.challenge-card:hover .challenge-image img {
    transform: scale(1.05);
}

.challenge-content {
    padding: 25px;
}

.challenge-content h3 {
    color: #43e8ff;
    font-size: 22px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.challenge-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #d1d7e0;
}

.progression-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.95) 0%, rgba(16, 23, 41, 0.9) 100%);
    position: relative;
}

.progression-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.progression-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(67, 232, 255, 0.2);
}

.progression-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.progression-image:hover img {
    transform: scale(1.05);
}

.progression-text {
    flex: 1;
    padding: 25px;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.progression-text h3 {
    color: #43e8ff;
    font-size: 24px;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.progression-text p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #d1d7e0;
}

.progression-text ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.progression-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #d1d7e0;
}

.progression-text ul li::before {
    content: "•";
    color: #43e8ff;
    position: absolute;
    left: 0;
    top: 0;
}

.progression-text ul li strong {
    color: #fff;
    font-weight: 600;
}

.accessibility-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(16, 23, 41, 0.9) 0%, rgba(6, 10, 18, 0.95) 100%);
    position: relative;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.accessibility-card {
    display: flex;
    flex-direction: column;
    background: rgba(13, 20, 37, 0.7);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.15);
    border-color: rgba(67, 232, 255, 0.4);
}

.accessibility-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 10px rgba(67, 232, 255, 0.5));
}



.accessibility-card h3 {
    color: #43e8ff;
    font-size: 22px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.accessibility-card ul {
    list-style-type: none;
    padding-left: 5px;
}

.accessibility-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #d1d7e0;
}

.accessibility-card ul li::before {
    content: "•";
    color: #43e8ff;
    position: absolute;
    left: 0;
    top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.expertise-category:hover .icon-img {
    transform: scale(1.1);
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #a9b3c9;
    max-width: 700px;
    margin: 0 auto;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

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

@media (min-width: 768px) {
    .mechanics-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accessibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dimension-showcase {
        flex-direction: row;
    }
    
    .dimension-image {
        width: 50%;
        height: auto;
    }
    
    .dimension-info {
        width: 50%;
    }
    
    .puzzle-design-content {
        flex-direction: row;
    }
    
    .progression-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .mechanics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accessibility-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(67, 232, 255, 0.2) 0%, rgba(67, 232, 255, 0) 70%);
    border-radius: 50%;
}

.portfolio-hero {
    background: linear-gradient(135deg, #0f0f2d 0%, #1a1a4a 50%, #2c1654 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.portfolio-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.expertise-section {
    background: linear-gradient(180deg, #0f0f2d 0%, #1a1a4a 100%);
}

.projects-section {
    background: linear-gradient(180deg, #1a1a4a 0%, #2c1654 100%);
}

.innovations-section {
    background: linear-gradient(180deg, #2c1654 0%, #0f0f2d 100%);
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}



.expertise-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.expertise-category {
    background: rgba(15, 15, 45, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.expertise-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.expertise-category:hover {
    border-color: rgba(67, 232, 255, 0.4);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.2);
}

.category-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    position: relative;
}

.icon-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(15, 15, 45, 0.7);
    border: 2px solid rgba(67, 232, 255, 0.4);
    box-shadow: 0 0 20px rgba(67, 232, 255, 0.4);
    transition: all 0.3s ease;
}

.expertise-category:hover .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(67, 232, 255, 0.6);
}


.expertise-category h3 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.expertise-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8957ff 0%, #43e8ff 100%);
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.7);
}

.category-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8b8ff;
    margin-bottom: 30px;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.skill-item {
    background: rgba(26, 26, 74, 0.5);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(67, 232, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-item:hover {
    border-color: rgba(67, 232, 255, 0.3);
    transform: translateY(-3px);
}

.skill-item h4 {
    font-size: 1.2rem;
    color: #43e8ff;
    margin-bottom: 10px;
}

.skill-item p {
    font-size: 0.95rem;
    color: #b8b8ff;
    line-height: 1.6;
}

.technical-achievements, .design-philosophy, .artistic-approach {
    background: rgba(26, 26, 74, 0.3);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #43e8ff;
}

.technical-achievements h4, .design-philosophy h4, .artistic-approach h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.technical-achievements ul {
    list-style: none;
    padding: 0;
}

.technical-achievements li {
    font-size: 1rem;
    color: #b8b8ff;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.technical-achievements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43e8ff;
    box-shadow: 0 0 5px rgba(67, 232, 255, 0.7);
}

.design-philosophy blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #d3d3ff;
    margin: 0;
    padding: 20px;
    background: rgba(15, 15, 45, 0.5);
    border-radius: 8px;
    border-left: 3px solid #8957ff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: rgba(15, 15, 45, 0.5);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 232, 255, 0.4);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.2);
}

.project-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}


.project-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
}

.project-type {
    font-size: 0.9rem;
    color: #43e8ff;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8b8ff;
    margin-bottom: 25px;
}

.project-details h4, .lessons-learned h4, .design-legacy h4, .research-outcomes h4 {
    font-size: 1.2rem;
    color: #43e8ff;
    margin: 20px 0 10px;
}

.project-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.project-details li {
    font-size: 0.95rem;
    color: #b8b8ff;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.project-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8957ff;
    box-shadow: 0 0 3px rgba(137, 87, 255, 0.7);
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.innovation-card {
    background: rgba(15, 15, 45, 0.5);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(67, 232, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.innovation-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.innovation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 232, 255, 0.4);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.2);
}

.innovation-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}



.innovation-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.innovation-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8b8ff;
    margin-bottom: 25px;
}

.technical-specs h4, .visualization-features h4, .tools-suite h4 {
    font-size: 1.3rem;
    color: #43e8ff;
    margin: 25px 0 15px;
}

.spec-item, .feature-item, .tool-item {
    background: rgba(26, 26, 74, 0.3);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(67, 232, 255, 0.1);
}

.spec-item strong, .feature-item strong, .tool-item strong {
    color: #43e8ff;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

.spec-item p, .feature-item p, .tool-item p {
    font-size: 0.9rem;
    color: #b8b8ff;
    line-height: 1.5;
    margin: 0;
}

.innovation-impact, .user-testing-results, .development-efficiency {
    background: rgba(26, 26, 74, 0.3);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #8957ff;
    margin-top: 25px;
}

.innovation-impact h4, .user-testing-results h4, .development-efficiency h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.development-efficiency ul {
    list-style: none;
    padding: 0;
}

.development-efficiency li {
    font-size: 0.95rem;
    color: #b8b8ff;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.development-efficiency li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8957ff;
    box-shadow: 0 0 3px rgba(137, 87, 255, 0.7);
}

.achievements-summary {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(67, 232, 255, 0.2);
}

.achievements-summary h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
}

.achievements-summary h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8957ff 0%, #43e8ff 100%);
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.7);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.award-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}

.award-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.award-event {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.award-info p:last-child {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .innovations-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid, .features-grid, .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 70px 0;
    }
    
    .expertise-category, .project-card, .innovation-card {
        padding: 25px;
    }
    
    .expertise-category h3 {
        font-size: 1.8rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .expertise-category, .project-card, .innovation-card {
        padding: 20px;
    }
    
    .expertise-category h3 {
        font-size: 1.6rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
}
@media print {
    header, footer, .legal-sidebar, #particles-js {
        display: none !important;
    }
    
    .legal-container {
        display: block;
        border: none;
        box-shadow: none;
    }
    
    .legal-content {
        padding: 0;
    }
    
    .legal-hero {
        padding: 20px 0;
        background: none;
    }
    
    .legal-section {
        padding: 0;
        background: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .legal-content h2, .legal-hero h1 {
        color: black;
        text-shadow: none;
    }
    
    .legal-content p, .legal-content li, .legal-intro {
        color: black;
    }
    
    .legal-content a {
        color: black;
        text-decoration: underline;
    }
}
footer {
    background-color: var(--background-dark);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: var(--z-index-footer);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-medium);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--text-light);
}

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

.location span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.address-link, .contact-link {
    display: block;
    color: var(--text-medium);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.address-link:hover, .contact-link:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Cookie Consent Banner
.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: var(--z-index-modal);
    display: none;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
} */


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  overflow-x: hidden;
  box-sizing: border-box;
}

.cookie-consent-banner.visible {
  transform: translateY(0);
}

.cookie-consent-banner.slide-out {
  transform: translateY(100%);
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  color: #00d4ff;
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cookie-text p {
  color: #b8c5d6;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-text a {
  color: #9d4edd;
  text-decoration: none;
  border-bottom: 1px dotted rgba(157, 78, 221, 0.5);
  transition: all 0.3s ease;
}

.cookie-text a:hover {
  color: #00d4ff;
  border-bottom-color: rgba(0, 212, 255, 0.5);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-buttons .neon-button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 100px;
  position: relative;
  overflow: hidden;
}

.cookie-buttons .neon-button.blue {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.cookie-buttons .neon-button.blue:hover {
  background: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.cookie-buttons .neon-button.red {
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
}

.cookie-buttons .neon-button.red:hover {
  background: rgba(255, 107, 53, 0.25);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.cookie-buttons .neon-button:active {
  transform: translateY(0);
}

.cookie-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(13, 27, 42, 0.95);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.cookie-message p {
  color: #b8c5d6;
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.cookie-message button {
  background: none;
  border: none;
  color: #00d4ff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-message button:hover {
  color: #9d4edd;
  transform: rotate(90deg);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 15px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cookie-icon {
    margin: 0 auto;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .cookie-buttons .neon-button {
    flex: 1;
    max-width: 140px;
  }

  .cookie-text h3 {
    font-size: 1.1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cookie-consent-content {
    padding: 12px;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    width: 100%;
  }

  .cookie-buttons .neon-button {
    width: 100%;
    max-width: none;
  }

  .cookie-message {
    bottom: 15px;
    right: 15px;
    left: 15px;
    max-width: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.neon-button:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

.cookie-message button:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

@media print {
  .cookie-consent-banner,
  .cookie-message {
    display: none !important;
  }
}



.close-modal {
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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



.setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.setting-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.toggle-switch label::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.toggle-switch input:checked + label {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + label::before {
    transform: translateX(30px);
}

.toggle-switch.disabled label {
    background-color: var(--primary-color);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(6, 10, 18, 0.7), rgba(6, 10, 18, 0.9));
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    background: linear-gradient(180deg, #0f0f2d 0%, #1a1a4a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.about-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.expertise-category:hover .icon-img {
    transform: scale(1.1);
}

.section-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(67, 232, 255, 0.2);
    border-radius: 50%;
    filter: blur(15px);
    z-index: -1;
    animation: pulse-icon 3s infinite ease-in-out;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.glow-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(67, 232, 255, 0.5);
}

.glow-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8957ff 0%, #43e8ff 100%);
    box-shadow: 0 0 10px rgba(67, 232, 255, 0.7);
}

.about-section .section-header p {
    font-size: 1.1rem;
    color: #b8b8ff;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 1s ease, transform 1s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(137, 87, 255, 0.2) 0%, rgba(67, 232, 255, 0.2) 100%);
    pointer-events: none;
}

.about-text {
    color: #fff;
    opacity: 0; 
    transform: translateX(30px); 
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0.3s; 
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #43e8ff;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #b8b8ff;
}

.about-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.about-text li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #b8b8ff;
    position: relative;
    padding-left: 15px;
}

.about-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #43e8ff;
    box-shadow: 0 0 5px rgba(67, 232, 255, 0.7);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 70px 0;
    }
    
    .glow-text {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .glow-text {
        font-size: 1.8rem;
    }
    
    .about-section .section-header p {
        font-size: 1rem;
    }
}

.team-section {
    background-color: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--background-medium);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--text-light);
}

.member-title {
    padding: 0 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.awards-section {
    background-color: var(--background-medium);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.award-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}

.award-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.award-event {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.award-info p:last-child {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.team-section {
    background: linear-gradient(180deg, #1a1a4a 0%, #2c1654 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}


.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expertise-card {
    background: rgba(15, 15, 45, 0.5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(67, 232, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise-card.visible {
    opacity: 1;
    transform: scale(1);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 232, 255, 0.3);
    border-color: rgba(67, 232, 255, 0.4);
}

.expertise-icon {
    margin-bottom: 25px;
    position: relative;
    width: 80px;
    height: 80px;
}

.expertise-icon .icon-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(15, 15, 45, 0.7);
    border: 2px solid rgba(67, 232, 255, 0.4);
    box-shadow: 0 0 20px rgba(67, 232, 255, 0.4);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(67, 232, 255, 0.6);
}

.creative-direction {
    background-image: url('../images/member1.jpg');
}

.programming {
    background-image: url('../images/member3.jpg');
}

.art-design {
    background-image: url('../images/member2.jpg');
}

.narrative {
    background-image: url('../images/member4.jpg');
}

.level-design {
    background-image: url('../images/member6.jpg');
}

.audio {
    background-image: url('../images/member5.jpg');
}

.expertise-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.expertise-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #8957ff 0%, #43e8ff 100%);
    box-shadow: 0 0 5px rgba(67, 232, 255, 0.7);
}

.expertise-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b8b8ff;
    margin-bottom: 20px;
    flex-grow: 1;
}

.expertise-skills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-skills li {
    font-size: 0.85rem;
    color: #fff;
    background: rgba(67, 232, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(67, 232, 255, 0.3);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-skills li {
    background: rgba(67, 232, 255, 0.25);
}

@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.expertise-card:nth-child(1) { transition-delay: 0.1s; }
.expertise-card:nth-child(2) { transition-delay: 0.2s; }
.expertise-card:nth-child(3) { transition-delay: 0.3s; }
.expertise-card:nth-child(4) { transition-delay: 0.4s; }
.expertise-card:nth-child(5) { transition-delay: 0.5s; }
.expertise-card:nth-child(6) { transition-delay: 0.6s; }

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 70px 0;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }
    
    .expertise-card {
        padding: 25px;
    }
    
    .expertise-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .expertise-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-card {
        padding: 20px;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-card h3 {
        font-size: 1.2rem;
    }
    
    .expertise-description {
        font-size: 0.9rem;
    }
}


.contact-section {
    background-color: var(--background-medium);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    display: block;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-small);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-container label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.contact-form button {
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
}

.info-card h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.info-card p {
    text-align: center;
    margin-bottom: 0.8rem;
}

.studio-location {
    margin-bottom: 1.5rem;
    text-align: center;
}

.studio-location:last-child {
    margin-bottom: 0;
}

.studio-location h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.social-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-small);
    color: var(--text-medium);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.social-link.discord:hover {
    background-color: #5865F2;
}

.social-link.twitter:hover {
    background-color: #1DA1F2;
}

.social-link.instagram:hover {
    background-color: #E1306C;
}

.social-link.youtube:hover {
    background-color: #FF0000;
}

.faq-section {
    background-color: var(--background-light);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-category {
    padding: 0.8rem 1.5rem;
    background-color: var(--background-medium);
    border: none;
    border-radius: var(--border-radius-small);
    color: var(--text-medium);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.faq-category:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.faq-category.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background-color: var(--background-medium);
    border-radius: var(--border-radius-medium);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--text-light);
    flex: 1;
}

.question-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.question-toggle::before,
.question-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    transition: transform var(--transition-fast);
}

.question-toggle::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.question-toggle::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .question-toggle::after {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.specs-table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5rem 0;
}

.specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.specs-cell {
    padding: 0.8rem;
    color: var(--text-medium);
}

.specs-cell.header {
    font-weight: 600;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.language-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-small);
}

.language-name {
    font-weight: 600;
    color: var(--text-light);
}

.language-support {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.lore-nav-section {
    background-color: var(--background-medium);
    padding: 1rem 0;
    position: sticky;
    top: 80px;
    z-index: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lore-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.lore-nav-item {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-small);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.lore-nav-item:hover {
    background-color: rgba(110, 0, 255, 0.1);
}

.lore-nav-item.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.lore-content-section {
    background-color: var(--background-dark);
    padding-top: 3rem;
}

.lore-tab {
    display: none;
}

.lore-tab.active {
    display: block;
}

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

.lore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.lore-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.lore-content.reverse .lore-text {
    direction: ltr;
}

.lore-image {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lore-text h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.lore-text h3:first-child {
    margin-top: 0;
}

.lore-text p {
    color: var(--text-medium);
}

.dimensions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.dimension-card {
    background-color: var(--background-medium);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dimension-image {
    height: 300px;
}

.dimension-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dimension-content {
    padding: 2rem;
}

.dimension-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.dimension-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.dimension-content h4 {
    color: var(--primary-light);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.dimension-content p {
    color: var(--text-medium);
}

.dimension-content ul {
    color: var(--text-medium);
}

.characters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.faction-section {
    margin-bottom: 2rem;
}

.faction-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.faction-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.character-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.character-cards.multi-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.character-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.character-image {
    height: 250px;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.character-card:hover .character-image img {
    transform: scale(1.05);
}

.character-info {
    padding: 1.5rem;
}

.character-info h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.character-title {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.character-info p:last-child {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.character-info {
    display: none;
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.character-info.active {
    display: grid;
    opacity: 1;
}
.artifacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.artifact-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background-color: var(--background-medium);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.artifact-image {
    height: 100%;
}

.artifact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artifact-content {
    padding: 2rem 2rem 2rem 0;
}

.artifact-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.artifact-type {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.artifact-content p {
    color: var(--text-medium);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: -2rem;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-date span {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-connector {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--background-dark), 0 0 0 8px rgba(110, 0, 255, 0.3);
}

.timeline-content {
    background-color: var(--background-medium);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .artifact-card {
        grid-template-columns: 1fr;
    }
    
    .artifact-image {
        height: 300px;
    }
    
    .artifact-content {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(13, 22, 32, 0.95) 0%, rgba(26, 38, 53, 0.95) 100%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 20px 0;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        border-left: 2px solid rgba(0, 229, 255, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
        overflow-y: auto;
        display: flex;
    }

    .nav-links.active,
    .menu-open .nav-links {
        left: 0;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 18px 25px;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 0;
        margin: 0;
        transition: all 0.3s ease;
        position: relative;
        text-align: left;
        color: var(--text-light);
        text-decoration: none;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(0, 229, 255, 0.15);
        transform: translateX(5px);
        color: var(--secondary-color);
        box-shadow: inset 3px 0 0 var(--secondary-color);
    }

    .hamburger-menu,
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        background: none;
        border: none;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .hamburger-menu:hover,
    .menu-toggle:hover {
        background-color: rgba(0, 229, 255, 0.1);
    }

    .hamburger-menu.active,
    .menu-toggle.active {
        background-color: rgba(0, 229, 255, 0.15);
    }

    .hamburger-menu .bar,
    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: var(--text-light);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger-menu:hover .bar,
    .menu-toggle:hover .bar {
        background-color: var(--secondary-color);
    }

    .hamburger-menu.active .bar:nth-child(1),
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--secondary-color);
    }

    .hamburger-menu.active .bar:nth-child(2),
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3),
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background-color: var(--secondary-color);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999; 
    }

    .menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open .hero {
        filter: blur(2px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .platform-icons {
        gap: 1rem;
    }
    
    .specs-row {
        grid-template-columns: 1fr;
    }
    
    .specs-cell.header {
        grid-column: 1 / -1;
    }

    .about-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .lore-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        direction: ltr !important;
    }

    .lore-content.reverse {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }

    .community-content {
        flex-direction: column !important;
        gap: 30px;
    }

    .dimension-showcase {
        flex-direction: column !important;
        gap: 20px;
    }

    .dimension-image {
        width: 100% !important;
        height: 250px;
    }

    .dimension-info {
        width: 100% !important;
        padding: 20px;
    }

    .puzzle-design-content {
        flex-direction: column !important;
        gap: 20px;
    }

    .progression-content {
        flex-direction: column !important;
        gap: 20px;
    }

    .dev-milestone-content {
        flex-direction: column !important;
    }

    .dev-milestone-image {
        width: 100% !important;
        height: 200px;
    }

    .dev-milestone-text {
        width: 100% !important;
        padding: 20px;
    }

    .technical-showcase {
        flex-direction: column !important;
        gap: 20px;
    }

    .technical-image {
        width: 100% !important;
        height: 200px;
    }

    .technical-info {
        width: 100% !important;
        padding: 20px;
    }

    .character-nav {
        flex-direction: column;
        gap: 5px;
    }

    .character-tab {
        padding: 12px;
        font-size: 0.9rem;
    }

    .character-info {
        grid-template-columns: 1fr !important;
        padding: 20px;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-container {
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .faq-categories {
        flex-direction: column;
        gap: 10px;
    }

    .faq-category {
        width: 100%;
        text-align: center;
    }

    .form-group {
        flex-direction: column !important;
        gap: 10px;
    }

    .form-group input {
        border-radius: 8px !important;
        margin-bottom: 0;
    }

    .form-group button {
        border-radius: 8px !important;
        width: 100%;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-date span {
        font-size: 0.8rem;
        padding: 6px 10px;
        margin-left: 10px;
    }

    .timeline-content {
        padding: 20px;
    }

    .artifact-card {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .artifact-image {
        height: 200px !important;
        width: 100%;
    }

    .artifact-content {
        padding: 20px !important;
    }

    .dimensions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dimension-card {
        margin-bottom: 20px;
    }

    .character-cards {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .character-cards.multi-row {
        grid-template-columns: 1fr !important;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        margin-top: 20px;
    }

    .newsletter-content {
        padding: 30px 20px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .lore-nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-date span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

.key-benefits-section {
    background: linear-gradient(180deg, var(--background-dark) 0%, var(--background-medium) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.key-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(var(--accent-color-rgb), 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(var(--accent-color-rgb), 0.5);
}

.benefit-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.registration-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(6, 10, 18, 0.95) 0%, rgba(13, 22, 32, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-banner.jpg') center/cover no-repeat;
    z-index: -1;
    filter: brightness(0.2);
}

.registration-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(6, 10, 18, 0.8);
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(110, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.1);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.registration-form label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.registration-form input {
    padding: 1rem;
    border: 1px solid rgba(110, 0, 255, 0.3);
    border-radius: var(--border-radius-medium);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.registration-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(110, 0, 255, 0.3);
}

.registration-form input::placeholder {
    color: var(--text-dark);
}

.registration-form button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 18, 0.9);
    backdrop-filter: blur(5px);
    z-index: var(--z-index-modal);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: var(--background-medium);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(110, 0, 255, 0.2);
    box-shadow: 0 0 30px rgba(110, 0, 255, 0.2);
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

.modal-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .registration-form-container {
        padding: 1.5rem;
    }
    
    .registration-form input {
        padding: 0.8rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-form-container {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }

    .contact-info {
        grid-column: 1 / -1;
    }

    .faq-categories {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .faq-category {
        flex: 0 1 auto;
        min-width: 120px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-date span {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .dimensions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .artifacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 20px 15px;
        min-height: auto;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .character-details h3 {
        font-size: 1.6rem;
    }

    .character-tab {
        padding: 10px;
        font-size: 0.85rem;
    }

    .nav-links {
        width: 90%;
        max-width: 280px;
        padding-top: 60px;
    }

    .nav-links a {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .expertise-card {
        padding: 20px 15px;
    }

    .expertise-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .expertise-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .expertise-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .expertise-skills li {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .contact-form-container {
        padding: 20px 15px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px; 
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 20px 15px;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .studio-location h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-date span {
        font-size: 0.7rem;
        padding: 4px 8px;
        margin-left: 5px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 15px 15px;
    }

    .neon-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }

    .cookie-consent-content {
        padding: 15px;
        gap: 15px;
    }

    .cookie-text h3 {
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.8rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .cookie-buttons .neon-button {
        width: 100%;
        padding: 10px;
        font-size: 0.85rem;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }

    .modal-content {
        margin: 20px;
        padding: 20px;
    }

    .modal-content h3 {
        font-size: 1.3rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .registration-form-container {
        padding: 20px 15px;
        margin: 0 15px;
    }

    .registration-form input {
        padding: 12px;
        font-size: 16px; 
    }

    .registration-form label {
        font-size: 1rem;
    }

    .dev-milestone-image {
        height: 150px !important;
    }

    .technical-image {
        height: 150px !important;
    }

    .dimension-image {
        height: 200px !important;
    }

    .artifact-image {
        height: 150px !important;
    }

    .challenge-image {
        height: 180px;
    }

    .character-visual img {
        max-height: 200px;
    }

    .lore-nav-item {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin: 2px;
    }

    .platform-icons {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .platform-icon {
        width: 30px;
        height: 30px;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (pointer: coarse) {
    .neon-button {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .character-tab,
    .dimension-tab,
    .technical-tab,
    .faq-category,
    .lore-nav-item {
        min-height: 44px;
    }
    
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-card:hover,
    .benefit-card:hover,
    .expertise-card:hover {
        transform: none;
    }
    
    .feature-card:active,
    .benefit-card:active,
    .expertise-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .character-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .character-tab {
        flex: 0 1 auto;
        min-width: 120px;
    }
}

@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    .hero,
    .newsletter-section,
    .cookie-consent-banner,
    #particles-js,
    .hamburger-menu,
    .nav-overlay,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .section-header {
        margin-bottom: 20pt;
    }
    
    .feature-card,
    .benefit-card,
    .expertise-card {
        border: 1pt solid #ccc;
        margin-bottom: 10pt;
        break-inside: avoid;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --secondary-color: #00ffff;
        --accent-color: #ff00ff;
        --text-light: #ffffff;
        --text-medium: #cccccc;
        --text-dark: #999999;
        --background-dark: #000000;
        --background-medium: #111111;
        --background-light: #222222;
    }
    
    .feature-card,
    .benefit-card,
    .expertise-card {
        border: 2px solid #ffffff;
    }
    
    .neon-button {
        border: 2px solid currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-in,
    .slide-in,
    .scale-in {
        opacity: 1 !important;
        transform: none !important;
    }
    
    #particles-js {
        display: none;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-light: #ffffff;
        --text-medium: #e0e0e0;
        --text-dark: #b0b0b0;
    }
}

.mobile-hidden {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    p, li, .faq-answer p {
        line-height: 1.6;
        font-size: 1rem;
    }
    
    .feature-card + .feature-card,
    .benefit-card + .benefit-card,
    .expertise-card + .expertise-card {
        margin-top: 20px;
    }
    
    img {
        height: auto;
        max-width: 100%;
    }
    
    .nav-links.active {
        animation: slideInRight 0.3s ease-out;
    }
    
    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .specs-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    input, textarea, select {
        border-radius: 8px;
        font-size: 16px; 
    }
    
    .lore-nav-section {
        position: relative;
    }
}

.neon-button:focus,
.nav-links a:focus,
.character-tab:focus,
.dimension-tab:focus,
.technical-tab:focus,
.faq-category:focus,
.lore-nav-item:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (max-width: 992px) {
    header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002;
        background-color: rgba(6, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 229, 255, 0.1);
        width: 100%;
        transform: translateZ(0); 
        will-change: transform;
    }
    
    .hamburger-menu,
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1003;
        position: relative;
        background: none;
        border: none;
        padding: 10px;
        border-radius: 6px;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .hamburger-menu .bar,
    .menu-toggle .bar {
        display: block;
        width: 26px;
        height: 3px;
        background-color: var(--text-light);
        margin: 3px 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 2px;
        transform-origin: center;
    }
    
    .hamburger-menu.active .bar:nth-child(1),
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background-color: var(--secondary-color);
    }
    
    .hamburger-menu.active .bar:nth-child(2),
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger-menu.active .bar:nth-child(3),
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background-color: var(--secondary-color);
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .menu-open {
        overflow: hidden;
    }
}


@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
        max-width: 900px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .character-nav {
        gap: 2rem;
    }
    
    .character-tab {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .contact-grid {
        gap: 60px;
    }
    
    .faq-categories {
        gap: 1.5rem;
    }
    
    .timeline-content {
        padding: 40px;
    }
    
    .dev-diary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .dimensions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .artifacts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    section {
        padding: 6rem 0;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1520px;
        padding: 0 2.5rem;
    }
    
    .hero h1 {
        font-size: 6.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
        max-width: 1000px;
    }
    
    .section-header h2 {
        font-size: 4.5rem;
    }
    
    .features-grid,
    .benefits-grid {
        gap: 50px;
    }
    
    .character-showcase {
        gap: 80px;
    }
    
    .dev-milestone-content {
        gap: 60px;
    }
    
    .technical-showcase {
        gap: 60px;
    }
    
    section {
        padding: 7rem 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        padding: 0 3rem;
    }
    
    .hero {
        min-height: calc(100vh - 100px);
    }
    
    .hero h1 {
        font-size: 7.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.6rem;
        max-width: 1200px;
    }
    
    .section-header h2 {
        font-size: 5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 50px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
    
    .dimensions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
    
    .artifacts-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 50px;
    }
    
    .dev-diary-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
    
    section {
        padding: 8rem 0;
    }
    
    .platform-icons {
        gap: 3rem;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2200px;
        padding: 0 4rem;
    }
    
    body {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 8.5rem;
    }
    
    .section-header h2 {
        font-size: 5.5rem;
    }
    
    .features-grid,
    .benefits-grid,
    .expertise-grid,
    .projects-grid {
        gap: 80px;
    }
    
    section {
        padding: 10rem 0;
    }
}

@media print {
  .cookie-consent-banner,
  .cookie-message {
    display: none !important;
  }
}


.menu-open .cookie-consent-banner {
  z-index: 10001 !important;
}

@media (max-width: 992px) {
  .cookie-consent-banner {
    z-index: 10000 !important;
  }
  
  .cookie-consent-banner.visible {
    z-index: 10001 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .cookie-consent-banner:not(.slide-out) {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cookie-consent-banner {
    z-index: 10000 !important;
  }
  
  .cookie-consent-content {
    padding: 18px;
    max-width: 1000px;
  }
  
  .cookie-text h3 {
    font-size: 1.1rem;
  }
  
  .cookie-text p {
    font-size: 0.9rem;
  }
  
  .cookie-buttons .neon-button {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
    .nav-links {
        width: 65% !important;
        max-width: 230px !important;
    }
    
    .nav-links a {
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
}

@media (max-width: 320px) {
    .nav-links {
        width: 60% !important;
        max-width: 200px !important;
    }
    
    .nav-links a {
        padding: 8px 10px !important;
        font-size: 0.9rem !important;
    }
    
    .hero h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
}

.social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.menu-open .cookie-consent-banner {
  transform: translateY(100%) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.menu-open .cookie-consent-banner {
  z-index: 9999 !important;
}