/* Main Stylesheet */
:root {
    /* Color Variables */
    --deep-purple: #2a0a4a;
    --neon-blue: #4dc8ff;
    --jungle-green: #00ff9d;
    --velvet-black: #0c0016;
    --royal-gold: #ffd700;
    --neon-pink: #ff2a6d;
    --electric-teal: #05d9e8;
    --dark-purple: #1a0533;
    --light-purple: #6e30a7;
    --cyber-white: #d1f7ff;
    
    /* Fonts */
    --font-pixel: 'Press Start 2P', cursive;
    --font-japanese: 'Kdam Thmor Pro', sans-serif;
    --font-futuristic: 'Orbitron', sans-serif;
    --font-digital: 'VT323', monospace;
    --font-title: 'Monofett', cursive;
    --font-thin: 'Bungee Hairline', cursive;
}

body {
    font-family: var(--font-futuristic);
    background-color: var(--velvet-black);
    color: var(--cyber-white);
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.pixel-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1' fill='%23FFFFFF' fill-opacity='0.5'/%3E%3Ccircle cx='30' cy='25' r='0.5' fill='%23FFFFFF' fill-opacity='0.3'/%3E%3Ccircle cx='50' cy='50' r='1' fill='%23FFFFFF' fill-opacity='0.6'/%3E%3Ccircle cx='70' cy='30' r='0.5' fill='%23FFFFFF' fill-opacity='0.4'/%3E%3Ccircle cx='90' cy='75' r='1' fill='%23FFFFFF' fill-opacity='0.5'/%3E%3C/svg%3E");
    animation: twinkle 10s infinite linear;
}

.neon-cityscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background-image: linear-gradient(0deg, rgba(42, 10, 74, 0.8) 0%, rgba(12, 0, 22, 0) 100%);
    mask-image: url("data:image/svg+xml,%3Csvg width='1440' height='200' viewBox='0 0 1440 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200V170H40V150H60V170H80V160H100V180H120V160H140V200H0Z M150 200V140H170V120H190V140H210V130H230V150H250V130H270V150H290V120H310V140H330V160H350V140H370V160H390V150H410V170H430V150H450V170H470V150H490V200H150Z M500 200V160H520V140H540V130H560V150H580V130H600V150H620V130H640V160H660V140H680V170H700V150H720V200H500Z M730 200V120H750V100H770V80H790V100H810V80H830V120H850V100H870V120H890V170H910V150H930V180H950V160H970V200H730Z M980 200V150H1000V120H1020V100H1040V80H1060V100H1080V80H1100V100H1120V120H1140V100H1160V120H1180V100H1200V120H1220V150H1240V130H1260V160H1280V140H1300V160H1320V140H1340V160H1360V140H1380V160H1400V140H1420V160H1440V200H980Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='1440' height='200' viewBox='0 0 1440 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200V170H40V150H60V170H80V160H100V180H120V160H140V200H0Z M150 200V140H170V120H190V140H210V130H230V150H250V130H270V150H290V120H310V140H330V160H350V140H370V160H390V150H410V170H430V150H450V170H470V150H490V200H150Z M500 200V160H520V140H540V130H560V150H580V130H600V150H620V130H640V160H660V140H680V170H700V150H720V200H500Z M730 200V120H750V100H770V80H790V100H810V80H830V120H850V100H870V120H890V170H910V150H930V180H950V160H970V200H730Z M980 200V150H1000V120H1020V100H1040V80H1060V100H1080V80H1100V100H1120V120H1140V100H1160V120H1180V100H1200V120H1220V150H1240V130H1260V160H1280V140H1300V160H1320V140H1340V160H1360V140H1380V160H1400V140H1420V160H1440V200H980Z' fill='black'/%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask-size: cover;
    background-color: var(--deep-purple);
    box-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-blue);
}

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(12, 0, 22, 0.8);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid var(--neon-blue);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
    letter-spacing: 2px;
}

.japanese-subtitle {
    font-family: var(--font-japanese);
    font-size: 0.9rem;
    color: var(--royal-gold);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--cyber-white);
    padding: 0.5rem 0.8rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--jungle-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--jungle-green);
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--neon-blue);
}

.nav-link.active::after {
    background-color: var(--neon-blue);
    width: 100%;
}

.theme-toggle {
    display: flex;
    gap: 0.5rem;
}

.theme-btn {
    font-family: var(--font-digital);
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    background-color: var(--dark-purple);
    color: var(--cyber-white);
    border: 1px solid var(--light-purple);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background-color: var(--light-purple);
}

.theme-btn.active {
    background-color: var(--neon-blue);
    color: var(--velvet-black);
}

/* Main Content Styles */
main {
    padding: 2rem 0;
}

.section-title {
    font-family: var(--font-futuristic);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 5px var(--neon-blue);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-japanese);
    font-size: 1.2rem;
    color: var(--royal-gold);
    margin-bottom: 2rem;
}

.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 2rem auto;
}

.ai-avatar {
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='75' cy='75' r='70' fill='%231A0533' stroke='%234DC8FF' stroke-width='2'/%3E%3Ccircle cx='75' cy='75' r='50' fill='%232A0A4A'/%3E%3Ccircle cx='75' cy='75' r='30' fill='%236E30A7'/%3E%3Cpath d='M60 65H90M60 85H90M70 55V95M80 55V95' stroke='%2305D9E8' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-blue);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ai-avatar:hover {
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
    transform: scale(1.05);
}

.avatar-speech {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-purple);
    color: var(--cyber-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--neon-blue);
    font-family: var(--font-digital);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.avatar-speech::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--neon-blue) transparent transparent;
}

.ai-avatar:hover + .avatar-speech {
    opacity: 1;
}

.cta-button {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--neon-pink);
    color: var(--cyber-white);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--neon-pink);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
}

.fire-trail {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-pink), var(--royal-gold));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.cta-button:hover .fire-trail {
    transform: translateX(0);
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background-color: rgba(26, 5, 51, 0.6);
}

.about-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    font-family: var(--font-digital);
    padding: 0.5rem 1.5rem;
    background-color: var(--dark-purple);
    color: var(--cyber-white);
    border: 1px solid var(--light-purple);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: var(--light-purple);
}

.tab-btn.active {
    background-color: var(--neon-blue);
    color: var(--velvet-black);
    border-color: var(--neon-blue);
}

.tab-content {
    position: relative;
    min-height: 200px;
}

.tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    background-color: rgba(42, 10, 74, 0.6);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--light-purple);
}

.tab-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tab-panel h3 {
    font-family: var(--font-futuristic);
    font-size: 1.5rem;
    color: var(--jungle-green);
    margin-bottom: 1rem;
}

.tab-panel p {
    font-family: var(--font-digital);
    font-size: 1.1rem;
    color: var(--cyber-white);
    line-height: 1.6;
}

/* Games Section */
.games-section {
    padding: 4rem 2rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background-color: rgba(26, 5, 51, 0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--deep-purple);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.game-card-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.game-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(42, 10, 74, 1) 0%, rgba(42, 10, 74, 0) 50%);
    z-index: 1;
}

.game-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-card h3 {
    font-family: var(--font-futuristic);
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.game-card p {
    font-family: var(--font-digital);
    font-size: 1rem;
    color: var(--cyber-white);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.play-button {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--jungle-green);
    color: var(--velvet-black);
    border-radius: 4px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px var(--jungle-green);
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 2rem;
    background-color: rgba(26, 5, 51, 0.6);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: rgba(42, 10, 74, 0.8);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--light-purple);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.avatar1 {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='40' fill='%232A0A4A'/%3E%3Cpath d='M30 30H50V50H30V30Z' fill='%234DC8FF'/%3E%3Ccircle cx='35' cy='35' r='3' fill='%23FFD700'/%3E%3Ccircle cx='45' cy='35' r='3' fill='%23FFD700'/%3E%3Cpath d='M32 45H48' stroke='%23FFD700' stroke-width='2'/%3E%3C/svg%3E");
}

.avatar2 {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='40' fill='%232A0A4A'/%3E%3Cpath d='M25 25H55V55H25V25Z' fill='%23FF2A6D'/%3E%3Ccircle cx='35' cy='35' r='3' fill='%23FFD700'/%3E%3Ccircle cx='45' cy='35' r='3' fill='%23FFD700'/%3E%3Cpath d='M30 45H50' stroke='%23FFD700' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.avatar3 {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='40' fill='%232A0A4A'/%3E%3Ccircle cx='40' cy='40' r='15' fill='%2300FF9D'/%3E%3Ccircle cx='35' cy='35' r='3' fill='%23FFD700'/%3E%3Ccircle cx='45' cy='35' r='3' fill='%23FFD700'/%3E%3Cpath d='M35 45L45 45' stroke='%23FFD700' stroke-width='2'/%3E%3C/svg%3E");
}

.exp-bar {
    height: 8px;
    background-color: var(--dark-purple);
    border-radius: 4px;
    margin: 0.5rem auto 1rem;
    width: 80%;
    overflow: hidden;
}

.exp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-teal));
    border-radius: 4px;
    transition: width 1s ease;
}

.testimonial-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--royal-gold);
    color: var(--velvet-black);
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-badge {
    transform: rotateY(180deg);
}

.testimonial-text {
    font-family: var(--font-digital);
    font-size: 1.1rem;
    color: var(--cyber-white);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--neon-blue);
    opacity: 0.3;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
}

.testimonial-author {
    font-family: var(--font-futuristic);
    font-size: 0.9rem;
    color: var(--neon-pink);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-purple);
    color: var(--cyber-white);
    border-radius: 50%;
    border: 1px solid var(--neon-blue);
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--neon-blue);
    color: var(--velvet-black);
}

/* History Section */
.history-section {
    padding: 4rem 2rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(var(--neon-blue), var(--neon-pink));
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--royal-gold);
    border-radius: 50%;
    z-index: 2;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -15px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -15px;
}

.timeline-item h3 {
    font-family: var(--font-futuristic);
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-family: var(--font-digital);
    font-size: 0.9rem;
    color: var(--cyber-white);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    background-color: var(--dark-purple);
    color: var(--neon-pink);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    top: -1.5rem;
}

.timeline-item:nth-child(odd)::before {
    right: 0;
}

.timeline-item:nth-child(even)::before {
    left: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 2rem;
    background-color: rgba(26, 5, 51, 0.6);
}

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

.disclaimer-card {
    background-color: rgba(42, 10, 74, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--light-purple);
}

.disclaimer-card h3 {
    font-family: var(--font-futuristic);
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    position: relative;
    cursor: pointer;
}

.disclaimer-card h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.3s ease;
}

.disclaimer-card.active h3::after {
    transform: rotate(45deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.disclaimer-card.active .collapsible-content {
    max-height: 200px;
}

.collapsible-content p {
    font-family: var(--font-digital);
    font-size: 0.9rem;
    color: var(--cyber-white);
    line-height: 1.6;
    padding-top: 1rem;
}

/* Footer Styles */
.main-footer {
    background-color: var(--deep-purple);
    color: var(--cyber-white);
    border-top: 2px solid var(--neon-blue);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

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

.footer-column h3 {
    font-family: var(--font-futuristic);
    font-size: 1.1rem;
    color: var(--jungle-green);
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column ul li a {
    font-family: var(--font-digital);
    font-size: 0.9rem;
    color: var(--cyber-white);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--neon-blue);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: var(--neon-blue);
    transform: translateY(-5px);
}

.mail-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D1F7FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.twitter-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D1F7FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.insta-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D1F7FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.bonus-countdown {
    text-align: center;
}

.bonus-countdown h3 {
    font-family: var(--font-futuristic);
    font-size: 1.1rem;
    color: var(--jungle-green);
    margin-bottom: 0.5rem;
}

#countdown {
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

.copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--light-purple);
    text-align: center;
}

.copyright p {
    font-family: var(--font-digital);
    font-size: 0.8rem;
    color: var(--cyber-white);
    opacity: 0.7;
}

/* Media Queries */
@media (max-width: 992px) {
    .main-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.6rem;
        padding: 0.4rem 0.6rem;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 2rem;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-badge {
        left: -15px !important;
    }
    
    .timeline-item::before {
        left: 2rem !important;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .theme-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}