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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e74c3c;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.stat i {
    font-size: 1.2rem;
    color: #ffd700;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.tile {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.tile:nth-child(even) {
    animation-delay: -1.5s;
}

.cooking-pot {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.alt-bg {
    background: #f8f9fa;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.overview-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Gameplay Flow */
.gameplay-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.flow-arrow {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: bold;
}

.step-visual {
    margin: 1rem 0;
}

.mini-tiles {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.mini-tile {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

.mini-tile:nth-child(2) {
    animation-delay: 0.2s;
}

.mini-tile:nth-child(3) {
    animation-delay: 0.4s;
}

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

.ingredient-collection {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ingredient {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 2px solid #e9ecef;
}

.cooking-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.dish {
    font-size: 2rem;
}

.reward {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Progression System */
.progression-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.progression-track {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.country-progression {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.country-node {
    text-align: center;
    flex: 1;
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.country-node span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dishes-completed {
    font-size: 0.9rem;
    color: #666;
}

.country-node.completed .country-flag {
    filter: none;
}

.country-node.current .country-flag {
    animation: glow 2s infinite;
}

.country-node.locked .country-flag {
    filter: grayscale(100%);
    opacity: 0.5;
}

@keyframes glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.progress-line {
    height: 4px;
    background: #e9ecef;
    flex: 1;
    margin: 0 1rem;
    border-radius: 2px;
    position: relative;
}

.progress-line.completed {
    background: #28a745;
}

.progress-line.completed::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #28a745;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Recipe Book */
.recipe-book {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recipe-grid {
    display: grid;
    gap: 1rem;
}

.recipe-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.recipe-card.completed {
    border-color: #28a745;
    background: #f8fff9;
}

.recipe-card.in-progress {
    border-color: #ffc107;
    background: #fffdf5;
}

.recipe-card.locked {
    opacity: 0.6;
    filter: grayscale(50%);
}

.recipe-image {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.recipe-card h4 {
    flex: 1;
    margin-bottom: 0.5rem;
}

.ingredients-needed {
    display: flex;
    gap: 0.5rem;
}

.ingredients-needed span {
    font-size: 1.2rem;
}

.ingredients-needed .missing {
    opacity: 0.3;
}

/* Themes */
.themes-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.theme-selector {
    display: flex;
    background: #f8f9fa;
}

.theme-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.theme-btn.active {
    background: #e74c3c;
    color: white;
}

.theme-btn:hover:not(.active) {
    background: #e9ecef;
}

.theme-content {
    padding: 2rem;
}

.theme-panel {
    display: none;
}

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

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

.country-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.country-card:hover {
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.flag {
    font-size: 2rem;
}

.country-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.signature-dishes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.dish {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.dish:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.05);
}

/* New Detailed Country Cards */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countries-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.country-card-detailed {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.country-card-detailed.unlocked {
    border-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #f8fff9 100%);
}

.country-card-detailed.current {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff 0%, #fffdf5 100%);
    animation: glow-current 3s ease-in-out infinite;
}

.country-card-detailed.locked {
    border-color: #dee2e6;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    opacity: 0.7;
}

@keyframes glow-current {
    0%, 100% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3); }
}

.country-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.country-header-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.flag-large {
    font-size: 4rem;
    line-height: 1;
}

.country-info {
    flex: 1;
}

.country-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.country-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.country-card-detailed.unlocked .country-status {
    background: #28a745;
    color: white;
}

.country-card-detailed.current .country-status {
    background: #ffc107;
    color: #212529;
}

.country-card-detailed.locked .country-status {
    background: #6c757d;
    color: white;
}

.country-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.signature-dishes-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dish-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dish-item:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.02);
    border-color: #c0392b;
}

.dish-item.locked {
    opacity: 0.5;
    filter: grayscale(50%);
}

.dish-item .dish-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.dish-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: inherit;
}

.dish-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.dish-item:hover .dish-info p {
    color: rgba(255, 255, 255, 0.8);
}

.country-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
    font-size: 0.9rem;
    color: #666;
}

.country-stats .stat {
    font-weight: 600;
}

.match-indicator {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Recipe Section */
.recipe-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.recipe-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.recipe-category-btn.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.recipe-category-btn:hover:not(.active) {
    border-color: #e74c3c;
    color: #e74c3c;
}

.recipe-category-content {
    display: none;
}

.recipe-category-content.active {
    display: block;
}

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

.recipe-card-detailed {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recipe-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.recipe-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recipe-icon {
    font-size: 3rem;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.recipe-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.recipe-difficulty {
    color: #f39c12;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.recipe-time {
    color: #666;
    font-size: 0.9rem;
}

.recipe-ingredients h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ingredient-item {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
    white-space: nowrap;
}

.recipe-rewards {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.reward-item {
    background: #28a745;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Ingredients Section */
.ingredients-overview {
    margin-bottom: 3rem;
}

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

.ingredient-type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ingredient-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.ingredient-type-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ingredient-type-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.type-examples span {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
}

.ingredient-mechanics h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

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

.mechanic-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.mechanic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mechanic-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mechanic-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Ingredient Bag System */
.ingredient-bag-system {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.ingredient-bag-system h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.bag-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.bag-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bag-icon {
    font-size: 3rem;
    line-height: 1;
}

.bag-details h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bag-details p {
    color: #666;
    line-height: 1.6;
}

.bag-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.feature-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.feature-item strong {
    color: #e74c3c;
    font-weight: 600;
}

.ingredient-examples h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.reusable-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.reusable-item:hover {
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    font-size: 2rem;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.ingredient-usage h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.usage-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.country-usage {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.country-usage:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Game Flow Styles */
.game-flow-overview {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.game-flow-overview h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.flow-phase {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.flow-phase:hover {
    border-color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.phase-icon {
    font-size: 1.5rem;
}

.phase-header h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
}

.phase-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 1rem;
}

.flow-arrow-big {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: bold;
}

.detailed-gameplay {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.detailed-gameplay h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.rarity-indicators {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.rarity {
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.rarity.common {
    background: #6c757d;
    color: white;
}

.rarity.rare {
    background: #007bff;
    color: white;
}

.rarity.epic {
    background: #6f42c1;
    color: white;
}

.ingredient.common {
    border-color: #6c757d;
    background: #f8f9fa;
}

.ingredient.rare {
    border-color: #007bff;
    background: #e3f2fd;
}

.ingredient.epic {
    border-color: #6f42c1;
    background: #f3e5f5;
}

/* Phase Overview */
.phase-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.phase-header-main {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 3;
}

.phase-number {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-header-main h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.phase-header-main p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Detailed Progression System */
.progression-system-detailed {
    display: grid;
    gap: 3rem;
}

.country-progression-detailed {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.country-progression-detailed h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.countries-unlock-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.country-unlock-node {
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.country-unlock-node.completed {
    border-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #f8fff9 100%);
}

.country-unlock-node.current {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff 0%, #fffdf5 100%);
    animation: pulse-unlock 3s ease-in-out infinite;
}

.country-unlock-node.locked {
    border-color: #dee2e6;
    background: #f8f9fa;
    opacity: 0.7;
}

@keyframes pulse-unlock {
    0%, 100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4); }
}

.country-info-unlock {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.country-flag-unlock {
    font-size: 2.5rem;
    line-height: 1;
}

.country-details-unlock h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.unlock-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.unlock-status.completed {
    background: #28a745;
    color: white;
}

.unlock-status.current {
    background: #ffc107;
    color: #212529;
}

.unlock-status.locked {
    background: #6c757d;
    color: white;
}

.star-progress {
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.dishes-progress {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.unlock-requirement {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Dish Progression */
.dish-progression-example {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dish-progression-example h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.dishes-unlock-sequence {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dish-unlock-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.dish-unlock-item.unlocked {
    border-color: #28a745;
    background: #f8fff9;
}

.dish-unlock-item.current {
    border-color: #ffc107;
    background: #fffdf5;
    animation: glow-dish 2s ease-in-out infinite;
}

.dish-unlock-item.locked {
    border-color: #dee2e6;
    background: #f8f9fa;
    opacity: 0.6;
}

@keyframes glow-dish {
    0%, 100% { box-shadow: 0 0 0 rgba(255, 193, 7, 0); }
    50% { box-shadow: 0 0 20px rgba(255, 193, 7, 0.3); }
}

.dish-icon {
    font-size: 2rem;
    line-height: 1;
}

.dish-unlock-info h4 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.dish-unlock-info .unlock-status {
    margin-bottom: 0.3rem;
}

.unlock-condition {
    font-size: 0.9rem;
    color: #666;
}

/* Star-based unlock system */
.star-unlock-system {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.star-unlock-system h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.star-system-explanation {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.star-rating-system h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
}

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

.star-tier {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.star-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.star-rating {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.star-condition {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.star-description {
    color: #666;
    font-size: 0.9rem;
}

.dish-stars {
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.star-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid #f39c12;
}

.star-summary h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.star-summary p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 1rem;
}

/* Emoji font support for all icons */
.dish-icon, .country-icon, .reward-icon, .step-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Simple Recipe System */
.simple-recipe-system {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.recipe-title {
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-title h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.recipe-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.recipe-card-simple {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
}

.recipe-header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.recipe-emoji {
    font-size: 3rem;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.recipe-details h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
}

.recipe-rating {
    color: #f39c12;
    font-size: 1.2rem;
}

.ingredients-list h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.ingredients-simple {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.ingredient-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ingredient-simple.completed {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.ingredient-simple.current {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.ingredient-simple.locked {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    opacity: 0.7;
}

.ingredient-simple .emoji {
    font-size: 1.5rem;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    min-width: 2rem;
}

.ingredient-simple .text {
    flex: 1;
    color: #2c3e50;
    font-weight: 500;
}

.ingredient-simple .status {
    font-size: 1.2rem;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.progress-simple {
    background: #e9ecef;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #495057;
    font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .simple-recipe-system {
        padding: 1.5rem;
    }

    .recipe-header-simple {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .recipe-emoji {
        font-size: 2.5rem;
    }

    .ingredient-simple {
        padding: 0.6rem;
        gap: 0.8rem;
    }

    .ingredient-simple .text {
        font-size: 0.9rem;
    }
}

/* Simple Flow */
.simple-flow {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.simple-flow h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.step-simple {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    min-width: 180px;
    transition: all 0.3s ease;
}

.step-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.step-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.arrow-simple {
    font-size: 2rem;
    color: #3498db;
    font-weight: bold;
}

/* Mobile responsive for flow */
@media (max-width: 768px) {
    .flow-simple {
        flex-direction: column;
        gap: 1.5rem;
    }

    .arrow-simple {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .step-simple {
        min-width: 100%;
        max-width: 300px;
    }
}

/* Level Structure Simple */
.level-structure-simple {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.level-structure-simple h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.level-structure-simple > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.level-example h4 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

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

.level-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.level-card.completed {
    background: #d4edda;
    border-color: #28a745;
}

.level-card.current {
    background: #fff3cd;
    border-color: #ffc107;
    transform: scale(1.05);
}

.level-card.locked {
    background: #f8d7da;
    border-color: #dc3545;
    opacity: 0.7;
}

.level-num {
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.level-card.completed .level-num {
    background: #28a745;
}

.level-card.current .level-num {
    background: #ffc107;
}

.level-card.locked .level-num {
    background: #dc3545;
}

.level-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.level-content h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.level-state {
    font-size: 0.9rem;
    font-weight: 500;
}

.cooking-final {
    text-align: center;
    margin-top: 2rem;
}

.cooking-arrow {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.cooking-result {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #28a745;
}

.cooking-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.cooking-result h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cooking-result p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Mobile responsive for levels */
@media (max-width: 768px) {
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .level-card {
        padding: 1rem;
    }

    .level-emoji {
        font-size: 1.5rem;
    }

    .cooking-emoji {
        font-size: 2rem;
    }
}

/* Chrome PC specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Chrome specific styles */
    .simple-recipe-system {
        display: block !important;
        visibility: visible !important;
    }

    .recipe-card-simple {
        display: block !important;
        background: #f8f9fa !important;
    }

    .ingredients-simple {
        display: flex !important;
        flex-direction: column !important;
    }

    .ingredient-simple {
        display: flex !important;
        align-items: center !important;
    }

    .simple-flow {
        display: block !important;
    }

    .flow-simple {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .level-structure-simple {
        display: block !important;
    }

    .levels-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    }
}

/* Fallback for older browsers */
.no-flexbox .flow-simple {
    display: block;
}

.no-flexbox .step-simple {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin: 1%;
}

.no-grid .levels-grid {
    display: block;
}

.no-grid .level-card {
    display: inline-block;
    width: 18%;
    margin: 1%;
    vertical-align: top;
}

/* Force visibility for Chrome */
.simple-recipe-system,
.simple-flow,
.level-structure-simple {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Level Unlock System */
.level-unlock-system {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.ingredient-rarity-system h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.rarity-explanation {
    text-align: center;
    margin-bottom: 2rem;
}

.rarity-explanation p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.rarity-tier {
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid;
    transition: all 0.3s ease;
}

.rarity-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rarity-tier:nth-child(1) {
    border-color: #6c757d;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.rarity-tier:nth-child(2) {
    border-color: #007bff;
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
}

.rarity-tier:nth-child(3) {
    border-color: #6f42c1;
    background: linear-gradient(135deg, #fff 0%, #f3e5f5 100%);
}

.rarity-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rarity-icon {
    font-size: 1.5rem;
}

.rarity-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.rarity-header.common h4 {
    color: #6c757d;
}

.rarity-header.rare h4 {
    color: #007bff;
}

.rarity-header.epic h4 {
    color: #6f42c1;
}

.rarity-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ingredient-rarity-item {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
    white-space: nowrap;
}

.rarity-description {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.map-rarity-progression {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.map-rarity-progression h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.map-level-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.level-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.level-rates {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rate {
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rate.common {
    background: #6c757d;
    color: white;
}

.rate.rare {
    background: #007bff;
    color: white;
}

.rate.epic {
    background: #6f42c1;
    color: white;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #e74c3c;
}

/* Monetization Section */
.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.monetization-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.monetization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.monetization-card.primary {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.monetization-card.premium {
    border-color: #f39c12;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    position: relative;
    overflow: hidden;
}

.monetization-card.premium::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #f39c12;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.monetization-card.premium .card-icon {
    background: linear-gradient(135deg, #f39c12, #d68910);
}

.monetization-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.monetization-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.item {
    color: #666;
    font-size: 1rem;
}

.revenue-projections {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.revenue-projections h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Technical Section */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.tech-section h3 i {
    color: #e74c3c;
    font-size: 1.3rem;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.tech-name {
    font-weight: 600;
    color: #2c3e50;
}

.tech-desc {
    color: #666;
    font-size: 0.9rem;
}

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

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.platform-item i {
    font-size: 2rem;
    color: #e74c3c;
}

.platform-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Development Timeline */
.development-timeline {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.development-timeline h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
}

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

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #e74c3c;
}

.timeline-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .gameplay-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .progression-system {
        grid-template-columns: 1fr;
    }

    .country-progression {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-line {
        width: 4px;
        height: 50px;
        margin: 1rem 0;
    }

    .theme-selector {
        flex-wrap: wrap;
    }

    .theme-btn {
        min-width: 50%;
    }

    .monetization-grid {
        grid-template-columns: 1fr;
    }

    .technical-grid {
        grid-template-columns: 1fr;
    }

    .projection-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -1.5rem;
        width: 15px;
        height: 15px;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .countries-grid-main {
        grid-template-columns: 1fr;
    }

    .country-header-detailed {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .signature-dishes-detailed {
        grid-template-columns: 1fr;
    }

    .country-stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .recipe-categories {
        flex-direction: column;
        align-items: center;
    }

    .recipe-category-btn {
        width: 200px;
    }

    .recipes-grid {
        grid-template-columns: 1fr;
    }

    .ingredient-types {
        grid-template-columns: 1fr;
    }

    .mechanics-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-list {
        justify-content: center;
    }

    .recipe-rewards {
        justify-content: center;
    }

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

    .bag-features {
        gap: 1rem;
    }

    .reusable-ingredients {
        grid-template-columns: 1fr;
    }

    .usage-countries {
        justify-content: center;
    }

    .flow-diagram {
        flex-direction: column;
        gap: 1.5rem;
    }

    .flow-arrow-big {
        transform: rotate(90deg);
    }

    .countries-unlock-flow {
        grid-template-columns: 1fr;
    }

    .dishes-unlock-sequence {
        gap: 0.8rem;
    }

    .dish-unlock-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .rarity-tiers {
        grid-template-columns: 1fr;
    }

    .map-levels {
        grid-template-columns: 1fr;
    }

    .rarity-ingredients {
        justify-content: center;
    }
}

/* Level Structure System */
.level-structure-system {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.level-explanation {
    margin-bottom: 1.5rem;
    text-align: center;
}

.level-example h4 {
    color: #495057;
    margin-bottom: 1rem;
    text-align: center;
}

.level-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.level-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.level-item.completed {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.level-item.current {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #ffc107;
    animation: pulse 2s infinite;
}

.level-item.locked {
    background: linear-gradient(135deg, #f8d7da 0%, #f1c2c7 100%);
    border-color: #dc3545;
    opacity: 0.7;
}

.level-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.level-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
}

.level-ingredient {
    font-weight: bold;
    color: #495057;
}

.level-status {
    font-size: 0.9rem;
    font-weight: 600;
}

.level-description {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

.cooking-unlock {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #e7f3ff 0%, #cce7ff 100%);
    border-radius: 10px;
    border: 2px solid #007bff;
}

.cooking-unlock h5 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.cooking-unlock p {
    color: #495057;
    margin: 0;
    font-size: 1.1rem;
}

.cooking-status {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e7f3ff 0%, #cce7ff 100%);
    border-radius: 10px;
    text-align: center;
}

.ingredient-status {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Simple Gameplay Flow */
.gameplay-flow-new {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.gameplay-flow-new h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.step-details li {
    padding: 0.5rem 0;
    color: #666;
    border-left: 3px solid #e74c3c;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

/* Level Progression Overview */
.level-progression-overview {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.level-progression-overview h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.progression-rule {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.rule-icon {
    font-size: 2rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.rule-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.rule-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Responsive for Level System */
@media (max-width: 768px) {
    .level-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .level-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .progression-explanation {
        grid-template-columns: 1fr;
    }

    .progression-rule {
        flex-direction: column;
        text-align: center;
    }
}
