/* Kindleora.xyz - Bright Vibrant Theme with Warm Colors */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-orange: #ff6b35;
    --sunset-red: #f7931e;
    --warm-yellow: #fdc830;
    --deep-orange: #c44536;
    --light-bg: #fff5f0;
    --white: #ffffff;
    --dark-text: #2d1b12;
    --gray-text: #6b5d56;
    --accent-pink: #ff5a7e;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    color: var(--dark-text);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--flame-orange), var(--sunset-red));
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.logo span {
    color: var(--warm-yellow);
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sunset-red), var(--warm-yellow));
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Section Title */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 3rem 0 2rem;
    background: linear-gradient(135deg, var(--flame-orange), var(--sunset-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Notice Box */
.notice-container {
    background: white;
    border: 4px solid var(--flame-orange);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.notice-container h3 {
    font-size: 2rem;
    color: var(--flame-orange);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.notice-container ul {
    list-style: none;
    padding: 0;
}

.notice-container li {
    padding: 0.8rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-text);
    text-align: center;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
    border-color: var(--flame-orange);
}

.info-box h3 {
    font-size: 1.7rem;
    color: var(--flame-orange);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p {
    color: var(--gray-text);
    line-height: 1.8;
    font-weight: 400;
}

/* Text Content */
.text-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 1000px;
    margin: 2rem auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: center;
}

/* Game Container */
.game-section {
    margin: 4rem 0;
}

.game-container {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 50px rgba(255, 107, 53, 0.25);
    border: 4px solid var(--sunset-red);
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-orange), var(--flame-orange));
    padding: 3rem 2rem;
    margin-top: 4rem;
    color: white;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    border: 5px solid var(--flame-orange);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.5);
}

.age-modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--flame-orange);
    font-weight: 900;
}

.age-modal-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
    font-weight: 500;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--flame-orange), var(--sunset-red));
    color: white;
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.age-btn.no {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
}

.age-btn.no:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.5);
}

/* Terms/Privacy/Disclaimer Pages */
.page-content {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-content h2 {
    color: var(--flame-orange);
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.page-content p {
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--gray-text);
}

.page-content li {
    margin-bottom: 0.7rem;
}

.page-content a {
    color: var(--flame-orange);
    text-decoration: none;
    font-weight: 600;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 3px solid var(--flame-orange);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box strong {
    color: var(--flame-orange);
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--flame-orange), var(--sunset-red));
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    nav.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .age-modal-content {
        margin: 20px;
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
