/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo .logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo .logo-link:hover {
    opacity: 0.8;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #5374B8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    flex-shrink: 0;
}

.language-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 60px;
}

.language-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.language-dropdown:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #5374B8;
}

.language-dropdown option {
    background: #333;
    color: #fff;
    padding: 0.5rem;
}

/* RTL Support for Arabic */
html[lang="ar"] {
    direction: rtl;
}

html[lang="ar"] .nav-container {
    flex-direction: row-reverse;
}

html[lang="ar"] .nav-right {
    flex-direction: row-reverse;
}

html[lang="ar"] .hero-container {
    text-align: right;
}

html[lang="ar"] .products-container {
    text-align: right;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-content {
    padding-right: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-button {
    background: #5374B8;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(83, 116, 184, 0.3);
}

/* Hero Cards Image */
.hero-cards-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-cards-image:hover {
    transform: scale(1.02);
}

/* Products Section */
.products {
    padding: 6rem 0 10rem 0;
    background: #fff;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.card-set-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-box {
    width: 120px;
    height: 160px;
    font-size: 1rem;
}

.anime-box {
    background: #5374B8;
}

.film-box {
    background: #F59E0B;
}

.coming-soon-box {
    background: #6b7280;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.product-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.product-button {
    background: #5374B8;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-button:hover {
    transform: translateY(-2px);
}

.product-button.disabled {
    background: #6b7280;
    cursor: not-allowed;
}

.product-button.disabled:hover {
    transform: none;
}

.sound-wave-small {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.sound-wave-small .wave-bars {
    display: flex;
    gap: 2px;
    align-items: end;
}

.sound-wave-small .wave-bars .bar {
    width: 2px;
    background: #5374B8;
    border-radius: 1px;
    animation: wave 1.5s ease-in-out infinite;
}

.sound-wave-small .wave-bars .bar:nth-child(1) {
    height: 8px;
}

.sound-wave-small .wave-bars .bar:nth-child(2) {
    height: 12px;
}

.sound-wave-small .wave-bars .bar:nth-child(3) {
    height: 8px;
}

/* QR Section */
.qr-section {
    position: relative;
    height: 0;
    z-index: 10;
}

.qr-container {
    position: absolute;
    top: -80px;
    left: 60%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.qr-card {
    width: 200px;
    height: 280px;
    background-image: url('../assets/home-bottom-card.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    transform: rotate(-8deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.qr-card:hover {
    transform: rotate(-8deg) scale(1.05);
}

.qr-code {
    display: none;
}

.qr-pattern {
    display: none;
}

/* Remove decorative stars since we're using the image */
.qr-card::before,
.qr-card::after {
    display: none;
}

/* How To Play Page Styles */
.how-to-hero {
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/how-to-play-hero-bg.jpg?v=1.0');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
}

/* Game Modes Section */
.game-modes {
    padding: 6rem 0;
    background: #f8f9fa;
}

.game-modes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* Mode Tabs */
.mode-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.mode-tab {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mode-tab:hover {
    border-color: #5374B8;
    color: #5374B8;
}

.mode-tab.active {
    background: #5374B8;
    border-color: #5374B8;
    color: #fff;
}

/* Mode Content */
.mode-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.mode-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mode-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mode-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.mode-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Box Set Selector */
.box-set-selector {
    margin-bottom: 3rem;
    text-align: center;
}

.box-set-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.box-set-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.box-set-option {
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.box-set-option:hover {
    border-color: #5374B8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.box-set-option.active {
    border-color: #5374B8;
    background: linear-gradient(135deg, #5374B8 0%, #4a66a3 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 116, 184, 0.3);
}

.box-set-image {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.box-set-option.active .box-set-image {
    filter: brightness(1.1) contrast(1.1);
}

.box-set-name {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-overlay {
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.video-container {
    margin-top: 2rem;
}

.video-player {
    position: relative;
    width: 500px;
    height: 315px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #333;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #000;
}

.video-player video::-webkit-media-controls {
    display: none !important;
}

.video-player video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Show controls when video is in fullscreen */
.video-player video:fullscreen::-webkit-media-controls {
    display: flex !important;
}

.video-player video:fullscreen::-webkit-media-controls-enclosure {
    display: flex !important;
}

.video-player video:-webkit-full-screen::-webkit-media-controls {
    display: flex !important;
}

.video-player video:-webkit-full-screen::-webkit-media-controls-enclosure {
    display: flex !important;
}

.video-player video:-moz-full-screen {
    controls: visible;
}

.video-player video:fullscreen {
    controls: visible;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.placeholder-content h3 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.placeholder-content p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.placeholder-icon {
    margin-bottom: 1rem;
}

/* Instructions Section */
.instructions {
    padding: 6rem 0;
    background: #f8f9fa;
    color: #333;
}

.instructions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.instruction-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.instruction-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.instruction-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #5374B8;
}

.instruction-steps {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.step-sub {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    margin-left: 2rem;
    font-size: 1rem;
    color: #666;
}

.step-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.step-text {
    flex: 1;
    color: #333;
}

/* Cards Image Visual */
.cards-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.how-to-play-cards {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Contact Page Styles */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
    color: #333;
    min-height: 100vh;
    padding-top: 120px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f9fafb;
}

.form-input:focus {
    outline: none;
    border-color: #5374B8;
    background: #fff;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 1rem;
    min-width: 120px;
}

.phone-number {
    flex: 1;
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    background: #f9fafb;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #5374B8;
    background: #fff;
}

.submit-button {
    background: #5374B8;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(83, 116, 184, 0.3);
}

/* Contact QR Card */
.contact-qr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card-full {
    width: 220px;
    height: 300px;
    transform: rotate(-8deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    object-fit: cover;
}



/* Privacy Policy Styles */
.privacy-header {
    padding: 6rem 0 3rem;
    background: #000;
    text-align: center;
    padding-top: 120px;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.privacy-intro {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-date {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.privacy-content {
    padding: 3rem 0;
    background: #f8f9fa;
    color: #333;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.privacy-nav {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-nav h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-nav-list {
    list-style: none;
}

.privacy-nav-list li {
    margin-bottom: 0.5rem;
}

.privacy-nav-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.privacy-nav-link:hover {
    color: #5374B8;
}

.privacy-main {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
}

.footer-logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-info {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-info .copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #5374B8;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #5374B8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 1.5rem;
    }

    .hero-content {
        padding-right: 0.5rem;
    }

    .hero-image {
        padding-left: 0.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .instruction-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mode-tabs {
        gap: 0.5rem;
    }

    .mode-tab {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .language-dropdown {
        font-size: 0.65rem;
        padding: 0.25rem 0.4rem;
        min-width: 50px;
    }

    .box-set-options {
        gap: 1rem;
    }

    .box-set-option {
        min-width: 160px;
        padding: 1rem;
    }

    .box-set-image {
        width: 100px;
        height: 130px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-nav {
        position: static;
        order: 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-content,
    .hero-image {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qr-container {
        top: -50px;
    }

    .qr-card {
        width: 140px;
        height: 195px;
    }

    .products-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .privacy-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-input {
        flex-direction: column;
    }

    .country-code {
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav,
    .footer-legal {
        align-items: center;
    }

    .video-player {
        width: 400px;
        height: 252px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-container,
    .products-container,
    .instructions-container,
    .contact-container,
    .privacy-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cards-image {
        max-height: 300px;
    }

    .products-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .product-card,
    .contact-form,
    .instruction-card,
    .privacy-main {
        padding: 1.5rem;
    }

    .hero-cards-image {
        max-height: 400px;
    }

    .product-box {
        width: 100px;
        height: 140px;
    }

    .qr-card {
        width: 100px;
        height: 140px;
    }

    .qr-container {
        top: -40px;
    }

    .contact-card-full {
        width: 200px;
        height: 280px;
    }

    .footer {
        padding-bottom: 3rem;
    }

    .nav-right {
        gap: 0.25rem;
    }

    .language-dropdown {
        font-size: 0.6rem;
        padding: 0.2rem 0.3rem;
        min-width: 45px;
    }

    .box-set-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .box-set-option {
        min-width: 140px;
        padding: 0.8rem;
    }

    .box-set-image {
        width: 80px;
        height: 110px;
    }

    .box-set-name {
        font-size: 0.9rem;
    }

    .video-player {
        width: 320px;
        height: 202px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .qr-card {
        width: 80px;
        height: 112px;
    }

    .qr-container {
        top: -35px;
    }

    .qr-card:hover {
        transform: rotate(-8deg) scale(1.02);
    }

    .footer {
        padding-bottom: 4rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #5374B8;
    outline-offset: 2px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #5374B8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}


/* Products Section */
.products {
    padding: 6rem 0 10rem 0;
    background: #fff;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.card-set-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-box {
    width: 120px;
    height: 160px;
    font-size: 1rem;
}

.anime-box {
    background: #5374B8;
}

.film-box {
    background: #f59e0b;
}

.coming-soon-box {
    background: #6b7280;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.product-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.product-button {
    background: #5374B8;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-button:hover {
    transform: translateY(-2px);
}

.product-button.disabled {
    background: #6b7280;
    cursor: not-allowed;
}

.product-button.disabled:hover {
    transform: none;
}



/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-info {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-info .copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #5374B8;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #5374B8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-content,
    .hero-image {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}