/* =================================
   EMBERS OF BANDUNG - Complete Website Styles
   Dark Theme Gaming Website
================================= */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700;800&family=Orbitron:wght@400;700;900&display=swap');

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

/* Color Palette - Dark Theme */
:root {
    /* Primary Colors */
    --primary-dark: #0A0A0A;
    --primary-light: #1A1A1A;
    --accent-red: #FF0040;
    --accent-orange: #FF6B35;
    --accent-yellow: #FFD700;
    
    /* Fire Theme Colors */
    --fire-red: #FF4500;
    --fire-orange: #FF6B35;
    --fire-yellow: #FFA500;
    --ember-glow: #FFD700;
    
    /* Neutral Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #808080;
    --background-dark: #0F0F0F;
    --background-medium: #1A1A1A;
    --background-light: #2A2A2A;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Montserrat', sans-serif;
    --font-display: 'Bebas Neue', cursive;
}

/* Base Body Styles */
body {
    font-family: var(--font-secondary);
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--primary-dark);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo i {
    color: var(--fire-orange);
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--fire-orange);
}

.nav-link i {
    font-size: 1.2rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-medium);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 150px;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    overflow: hidden;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
    color: var(--fire-orange);
    background-color: var(--glass-bg);
}

.dropdown-item:first-child:hover,
.dropdown-item:first-child.active {
    border-radius: 5px 5px 0 0;
}

.dropdown-item:last-child:hover,
.dropdown-item:last-child.active {
    border-radius: 0 0 5px 5px;
}

/* Ensure dropdown doesn't affect nav layout */
.nav .dropdown {
    position: relative;
}

.nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
}

/* Override conflicting nav-link styles for dropdown - Simplified */
.nav .dropdown .dropdown-toggle {
    position: relative;
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav .dropdown .dropdown-toggle:hover {
    background: var(--glass-bg);
    color: var(--fire-orange);
}

/* Fix dropdown menu positioning */
.header .nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    background-color: var(--background-medium);
    border-radius: 12px;
    overflow: hidden;
    min-width: 150px;
    display: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--fire-orange);
    color: var(--text-primary);
}

/* Home Page Styles */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--background-medium) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/1920x1080/0A0A0A/FF4500?text=Embers+Background') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--fire-orange);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--fire-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--fire-orange);
}

.btn-secondary:hover {
    background-color: var(--fire-orange);
    transform: translateY(-2px);
}

/* About Game Section */
.about-game {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.about-game h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--fire-orange);
    text-align: center;
}

.about-game p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Latest News Section */
.latest-news {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.latest-news h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--fire-orange);
    text-align: center;
}

.news-box {
    background-color: var(--background-light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.news-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Feedback Section */
.feedback {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.feedback h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--fire-orange);
    text-align: center;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--background-dark);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fire-orange);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.success-message {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    font-size: 0.9rem;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--fire-orange);
    color: var(--text-primary);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: var(--fire-red);
}

/* Team Section Styles */
.team-section {
    padding: 60px 0;
    background: var(--background-dark);
}

.team-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--fire-orange);
    text-align: center;
}

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

.team-member {
    text-align: center;
    background: var(--background-medium);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--fire-orange);
}

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

.team-member h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.team-member p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section Styles */
.features-section {
    padding: 60px 0;
    background: var(--background-dark);
}

.features-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--fire-orange);
    text-align: center;
}

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

.feature-item {
    text-align: center;
    background: var(--background-medium);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: var(--fire-orange);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Requirements Section Styles */
.requirements-section {
    padding: 60px 0;
    background: var(--background-dark);
}

.requirements-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--fire-orange);
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-card {
    background: var(--background-medium);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.requirement-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--fire-orange);
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.requirement-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--fire-orange);
}

/* About Page Styles */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 80px;
    border-radius: 10px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-overlay h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.about-content {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.profile-section,
.description-section {
    margin-bottom: 80px;
}

.profile-container,
.description-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.profile-image {
    flex: 0 0 300px;
}

.profile-content {
    flex: 1;
}

.profile-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--fire-orange);
}

.profile-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.description-container {
    flex-direction: row-reverse;
}

.description-content {
    flex: 1;
}

.description-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--fire-orange);
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.description-image {
    flex: 0 0 400px;
}

/* Feedback Page Styles */
.feedback-main {
    padding: 120px 0 80px;
    background-color: var(--background-medium);
    min-height: 100vh;
}

.feedback-main h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--fire-orange);
    text-align: center;
}

.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feedback-item {
    background-color: var(--background-light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1);
}

.feedback-avatar {
    flex: 0 0 60px;
}

.feedback-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.feedback-content {
    flex: 1;
}

.feedback-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.feedback-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.feedback-text {
    line-height: 1.6;
    color: var(--text-secondary);
}

/* News Page Styles */
.news-main {
    padding: 120px 0 80px;
    background-color: var(--background-medium);
    min-height: 100vh;
}

.latest-news-section {
    margin-bottom: 80px;
}

.news-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--fire-orange);
}

.news-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.news-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--background-light);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.news-hero-content {
    flex: 1;
}

.news-hero-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--fire-orange);
}

.news-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.btn-hero {
    padding: 15px 30px;
    background-color: var(--fire-orange);
    color: var(--text-primary);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--fire-red);
}

.news-hero-image {
    flex: 0 0 500px;
}

.news-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.game-updates h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--fire-orange);
    text-align: center;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.update-card {
    background-color: var(--background-light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1);
}

.update-card.featured {
    grid-column: span 2;
    display: flex;
    gap: 30px;
}

.update-image {
    overflow: hidden;
}

.update-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.update-card.featured .update-image {
    flex: 0 0 400px;
}

.update-card.featured .update-image img {
    height: 100%;
}

.update-content {
    padding: 25px;
}

.update-card.featured .update-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.update-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.update-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.update-description {
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-read-more,
.btn-detail {
    padding: 10px 20px;
    background-color: var(--fire-orange);
    color: var(--text-primary);
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-read-more:hover,
.btn-detail:hover {
    background-color: var(--fire-red);
}

/* Store Page Styles */
.store-main {
    padding: 120px 0 80px;
    background-color: var(--background-medium);
    min-height: 100vh;
}

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

.store-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--fire-orange);
}

.store-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.product-card {
    background-color: var(--background-light);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1);
}

.product-image {
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Flip effect for T-shirt */
.flip-container {
    position: relative;
    overflow: hidden;
}

.flip-container .front {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.flip-container .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flip-container:hover .front {
    opacity: 0;
}

.flip-container:hover .back {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.stock-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.stock-status.available {
    background-color: #4CAF50;
    color: white;
}

.stock-status.limited {
    background-color: #FF9800;
    color: white;
}

.stock-status.unavailable {
    background-color: #f44336;
    color: white;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fire-orange);
    margin-bottom: 15px;
}

.product-description {
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--glass-border);
    background-color: var(--background-dark);
    color: var(--text-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.qty-btn:hover:not(:disabled) {
    background-color: var(--fire-orange);
    border-color: var(--fire-orange);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-value {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-detail,
.btn-cart {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-detail {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-detail:hover:not(:disabled) {
    background-color: var(--glass-bg);
    border-color: var(--fire-orange);
}

.btn-cart {
    background-color: var(--fire-orange);
    color: var(--text-primary);
}

.btn-cart:hover:not(:disabled) {
    background-color: var(--fire-red);
}

.btn-detail:disabled,
.btn-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Beli Langsung Button - WhatsApp Style */
.btn-buy {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.btn-buy i {
    font-size: 1.2rem;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
}

.footer-left {
    flex: 2;
    max-width: 1000px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: left;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--fire-orange);
    margin-right: 12px;
    font-size: 1.8rem;
}

.footer-left p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 250px;
}

.footer-right h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--background-light);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--fire-orange);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

/* Footer Middle Section - Feedback */
.footer-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 300px;
}

.footer-middle h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-feedback-container {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.footer-feedback-container::-webkit-scrollbar {
    width: 6px;
}

.footer-feedback-container::-webkit-scrollbar-track {
    background: transparent;
}

.footer-feedback-container::-webkit-scrollbar-thumb {
    background: var(--fire-orange);
    border-radius: 3px;
}

.footer-feedback-item {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--fire-orange);
}

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

.footer-feedback-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-feedback-message {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    font-style: italic;
}

.footer-feedback-date {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Home Popup Button */
.home-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.home-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--fire-orange);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--fire-orange);
}

.home-popup-btn:hover {
    background-color: var(--fire-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 69, 0, 0.6);
    border-color: var(--fire-red);
}

.home-popup-btn i {
    transition: transform 0.3s ease;
}

.home-popup-btn:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-container,
    .description-container,
    .news-hero {
        flex-direction: column;
        gap: 30px;
    }
    
    .profile-image,
    .description-image,
    .news-hero-image {
        flex: none;
        width: 100%;
    }
    
    .update-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .update-card.featured .update-image {
        flex: none;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-left {
        flex: 1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-right {
        flex: 1;
        align-items: center;
        text-align: center;
        min-width: auto;
    }
    
    .footer-middle {
        flex: 1;
        align-items: center;
        min-width: auto;
    }
    
    .footer-feedback-container {
        max-height: 150px;
    }
    
    .home-popup {
        bottom: 20px;
        right: 20px;
    }
    
    .home-popup-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-overlay h1 {
        font-size: 2.5rem;
        padding: 20px 40px;
    }
    
    .feedback-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feedback-avatar {
        margin: 0 auto;
    }
    
    .news-hero {
        padding: 20px;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
}
body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--background-dark) 25%, var(--background-medium) 50%, var(--background-light) 75%, var(--primary-dark) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* =================================
   HEADER STYLES
================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--accent-red);
    box-shadow: 0 8px 32px rgba(255, 0, 64, 0.3);
    padding: 1rem 2rem;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-orange), var(--accent-red), transparent);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    flex: 1;
}

.header-center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

/* Logo Styles */
.logo-home-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    padding-bottom: 25px;
}

.logo-home-link:hover {
    transform: scale(1.05);
}

.logo-home-link:hover .logo-placeholder {
    box-shadow: 0 0 30px var(--accent-red);
    transform: rotate(3deg);
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-orange), var(--ember-glow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    font-family: var(--font-display);
}

.logo-placeholder::after {
    content: 'HOME';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-secondary);
}

.logo-home-link:hover .logo-placeholder::after {
    opacity: 1;
}

/* Navigation */
.header-game-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-orange), var(--ember-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8));
}

/* Description Section */
.header-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

/* Description Section - Game Page Specific Navigation */
.header-nav .nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.header-nav .nav-link:hover {
    background: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-color: transparent;
}

.header-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-nav .nav-link:hover::before {
    opacity: 1;
}

/* Cart Icon */
.cart-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.cart-icon:hover {
    color: var(--accent-orange);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-red));
    border-color: transparent;
}

/* Description Section */
.description-section {
    background: transparent;
    margin: 2rem;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1), 0 0 100px rgba(255, 255, 255, 0.05);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 69, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
    border-radius: 20px;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.game-logo {
    margin-bottom: 2rem;
}

.logo-placeholder-large {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange), var(--ember-glow), var(--fire-yellow));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.4);
    position: relative;
}

.logo-placeholder-large::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, var(--ember-glow), transparent);
    border-radius: 50%;
    opacity: 0.5;
}

.game-description h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange), var(--ember-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.8));
}

.game-description h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fire-orange), transparent);
    border-radius: 2px;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-download,
.btn-presentation {
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange));
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

.btn-download:hover::before,
.btn-presentation:hover::before {
    left: 100%;
}

.btn-download:hover,
.btn-presentation:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.6);
}

.btn-download {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-download:hover {
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.6);
}

.btn-presentation {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.btn-presentation:hover {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.6);
}

.description-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05), 0 0 20px rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.description-scroll p {
    color: var(--smoke-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

.description-scroll::-webkit-scrollbar {
    width: 8px;
}

.description-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.description-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--fire-orange), var(--ember-glow));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.description-scroll p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

/* News Section */
.news-section {
    background: transparent;
    margin: 2rem;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1), 0 0 100px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.news-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.news-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange), var(--ember-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fire-orange), transparent);
    border-radius: 2px;
}

.news-container {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.news-placeholder {
    text-align: center;
    color: var(--smoke-white);
    font-style: italic;
    padding: 2rem;
    background: transparent;
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.news-placeholder p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Comment Section */
.comment-section {
    background: transparent;
    margin: 2rem;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1), 0 0 100px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.comment-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.comment-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange), var(--ember-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.comment-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fire-orange), transparent);
    border-radius: 2px;
}

.comment-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--smoke-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--smoke-white);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fire-orange);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.submit-btn {
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.6);
    background: linear-gradient(45deg, var(--fire-orange), var(--ember-glow));
}

.submit-btn-download {
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 25px rgba(255, 69, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 69, 0, 0.6);
    background: linear-gradient(45deg, var(--fire-orange), var(--ember-glow));
}

.submit-btn-presentation {
    background: linear-gradient(45deg, var(--fire-orange), var(--ember-glow));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 25px rgba(255, 165, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn-presentation:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 165, 0, 0.6);
    background: linear-gradient(45deg, var(--ember-glow), var(--fire-red));
}

/* Footer Section */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3rem 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    gap: 2rem;
}

.footer-left {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.logo-placeholder-small {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange), var(--ember-glow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.6);
}

.footer-logo h3 {
    font-size: 2.5rem;
    font-family: var(--font-display);
    background: linear-gradient(45deg, var(--accent-red), var(--accent-orange), var(--ember-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.7));
}

.footer-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.footer-about {
    max-width: 400px;
}

.footer-about h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.footer-about p {
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section strong {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #ff6b6b;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ff6b6b;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: #ff6b6b;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .header-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .description-section,
    .news-section,
    .comment-section {
        margin: 1rem;
        padding: 2rem 1rem;
    }
    
    .footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-person {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .game-description h2 {
        font-size: 2rem;
    }
    
    .logo-placeholder-large {
        width: 120px;
        height: 120px;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Navigation - Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    /* Header & Navigation Mobile */
    .header-container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transition: left 0.3s ease;
        z-index: 999;
        border-right: 1px solid var(--glass-border);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 12px 15px;
        border-radius: 8px;
    }
    
    .nav-link:hover {
        background: var(--glass-bg);
    }
    
    /* Dropdown Mobile Styles */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: 1px solid var(--glass-border);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-item {
        text-align: left;
        padding: 10px 15px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 15px 60px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    /* Feedback Form Mobile */
    .feedback-form {
        padding: 20px;
        margin: 0 15px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
        text-align: center;
    }
    
    /* News Section Mobile */
    .news-box {
        flex-direction: column;
    }
    
    .news-item {
        min-width: 100%;
    }
    
    /* About Game Section Mobile */
    .about-game {
        padding: 60px 15px;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .btn-buy {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-buy:active,
    .btn-submit:active {
        transform: scale(0.98);
    }
}
