/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #1a1a1a;
    color: #e0d5c7;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Steampunk Button Styles */
.steampunk-btn {
    position: relative;
    padding: 12px 24px;
    border: none;
    background: linear-gradient(145deg, #8b4513, #a0522d);
    color: #e0d5c7;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 
        inset 2px 2px 4px rgba(255,255,255,0.1),
        inset -2px -2px 4px rgba(0,0,0,0.3),
        0 4px 8px rgba(0,0,0,0.3);
    overflow: hidden;
}

.steampunk-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

.steampunk-btn:hover {
    background: linear-gradient(145deg, #a0522d, #cd853f);
    box-shadow: 
        inset 2px 2px 4px rgba(255,255,255,0.2),
        inset -2px -2px 4px rgba(0,0,0,0.4),
        0 6px 12px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.steampunk-btn:active {
    transform: translateY(0);
    box-shadow: 
        inset 2px 2px 4px rgba(0,0,0,0.3),
        inset -2px -2px 4px rgba(255,255,255,0.1);
}

.primary-btn {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #2c1810;
}

.primary-btn:hover {
    background: linear-gradient(145deg, #ffd700, #daa520);
}

.secondary-btn {
    background: linear-gradient(145deg, #4a4a4a, #696969);
}

.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.small-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.link-btn {
    width: 100%;
    margin: 10px 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #8b4513;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    color: #d4af37;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #a0522d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0d5c7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #d4af37;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
   
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../Images/backgrounds/stormy_desert_background.png") center/cover no-repeat;
}

.fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(139, 69, 19, 0.3) 30%,
        rgba(26, 26, 26, 0.6) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: 2px;
    line-height: 1.1;
}

@keyframes glow {
    from { text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.3); }
    to { text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.6); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #a0522d;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-characters {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
}

.hero-character {
    position: absolute;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

.hero-character.arashi {
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-character.kat {
    left: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gear-divider {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: url("../Images/gear.png") center/contain no-repeat;
    background-size: contain;
    animation: rotate 10s linear infinite;
}

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

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Lore Section */
.lore {
    background: url('../Images/backgrounds/stormy_desert_background.png') center/cover no-repeat;
    position: relative;
}

.lore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.lore-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lore-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.lore-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lore-quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #daa520;
    border-left: 4px solid #d4af37;
    padding-left: 2rem;
    margin-top: 2rem;
}

/* Characters Section */
.characters {
    background: rgba(26, 26, 26, 0.95);
    padding: 120px 0;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.character-card {
    background: linear-gradient(145deg, rgba(139, 69, 19, 0.2), rgba(26, 26, 26, 0.8));
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.character-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

/* Character Section - Simplified Approach */
.character-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #8b4513;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.character-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.character-image video {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Remove all container classes - direct styling only */
.video-container,
.image-container {
    /* Remove these classes entirely */
}

/* Hover Effects - Simplified */
.character-card:hover .character-image img,
.character-card:hover .character-image video {
    transform: scale(1.05);
}

.character-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.character-info p {
    margin-bottom: 1rem;
    color: #a0522d;
    font-weight: 600;
}

/* Game Info Section */
.game-info {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
}

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

.feature-card {
    background: rgba(139, 69, 19, 0.2);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

/* Links Section */
.links {
    background: rgba(26, 26, 26, 0.95);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 3rem 0 1rem;
    border-top: 2px solid #8b4513;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

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

.footer-links a {
    color: #e0d5c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-top: -8vh;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-characters {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}







/* Legal Page Styles */
.legal-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.legal-header {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #a0522d;
    margin-top: 1rem;
}

.legal-content {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.95);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.legal-section {
    background: linear-gradient(145deg, rgba(139, 69, 19, 0.2), rgba(26, 26, 26, 0.8));
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.legal-section h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #daa520;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
}

.legal-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0d5c7;
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("Images/contact_western_graphic.png") center/cover no-repeat;
}

.contact-header {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #a0522d;
    margin-top: 1rem;
}

.contact-content {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.95);
}

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

.contact-info h2,
.contact-social h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    background: linear-gradient(145deg, rgba(139, 69, 19, 0.2), rgba(26, 26, 26, 0.8));
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: #daa520;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #e0d5c7;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffd700;
}

.contact-social {
    text-align: center;
}

.contact-social p {
    color: #e0d5c7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links {
    display: grid;
    gap: 1rem;
}

.social-links .steampunk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-icon {
    font-size: 1.2rem;
}

.response-info {
    background: linear-gradient(145deg, rgba(139, 69, 19, 0.2), rgba(26, 26, 26, 0.8));
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.response-info h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.response-info p {
    color: #e0d5c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Active navigation link */
.nav-link.active {
    color: #d4af37;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero,
    .legal-hero {
        height: 50vh;
    }
    
    .legal-section h2,
    .contact-info h2,
    .contact-social h2 {
        font-size: 1.8rem;
    }
}


/* About Video Styles */
.about-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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


/* Legal Download Button */
.legal-download {
    margin-top: 2rem;
    text-align: center;
}

.legal-download .steampunk-btn {
    font-size: 1.1rem;
    padding: 16px 32px;
}
/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid #8B4513;
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid #8B4513;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #FFD700;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}
/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid #8B4513;
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* ADD THE NEW CODE HERE: */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #FFFFFF !important;
    text-decoration: none;
    border-bottom: 1px solid #8B4513;
    transition: background 0.3s ease;
}

.dropdown-menu a:visited {
    color: #FFFFFF !important;
}

.dropdown-menu a:hover {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.1);
}




