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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Logo link styles */
.logo { text-decoration: none; }
.logo:focus { outline: none; box-shadow: 0 0 0 3px rgba(0,255,136,0.35); border-radius: 6px; }


/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    color: white;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.7);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* Game Section */
.game-section {
    width: 100%;
    margin: 2rem 0 1rem 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

/* Game Layout Container */
.game-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.game-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Fullscreen Button */
.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.fullscreen-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.5);
}

.fullscreen-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.fullscreen-btn.fullscreen i {
    transform: rotate(180deg);
}

/* Fullscreen mode styles */
.game-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
    background: #000;
    max-width: none;
}

.game-container.fullscreen .game-iframe {
    width: 100%;
    height: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .fullscreen-btn {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    
    .fullscreen-btn i {
        font-size: 1rem;
    }
}



.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.game-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    color: white;
    text-align: center;
}

.game-placeholder i {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.game-placeholder .game-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.game-placeholder .error-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

.game-placeholder p {
    opacity: 0.8;
}

/* Features List */
.features-list {
    margin: 2rem 0;
    text-align: left;
}

.features-list h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #333;
    margin: 2rem 0 1.5rem 0;
    text-align: center;
}

.features-list ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00ff88;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateX(5px);
}

.features-list i {
    font-size: 1.5rem;
    color: #00ff88;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.features-list strong {
    color: #333;
    font-weight: 700;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 0 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: block;
    visibility: visible;
    opacity: 1;
}

.about-section h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #333;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.7);
}

.about-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin: 3rem 0 2rem 0;
    text-align: center;
    color: #333;
}

.about-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

/* Game Showcase */
.game-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.media-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.media-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.media-placeholder.video {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.media-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.media-placeholder span {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

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

/* YouTube Video */
.youtube-video {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.youtube-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.youtube-video iframe {
    width: 100%;
    height: 338px; /* 16:9 aspect ratio for 600px width */
    border: none;
    display: block;
}

.about-section .cta-button {
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    display: block;
}

/* Game Controls Section */
.game-controls {
    margin: 3rem 0;
    text-align: left;
}

.game-controls h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.controls-section {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid #00ff88;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.controls-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.controls-section h3::before {
    content: '🎮';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.controls-section:nth-child(2) h3::before {
    content: '⚡';
}

.controls-section:nth-child(3) h3::before {
    content: '🏆';
}

.controls-section ul {
    list-style: none;
    padding: 0;
}

.controls-section li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    line-height: 1.6;
}

.controls-section li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.controls-section strong {
    font-weight: 700;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    margin-top: 4rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00cc6a !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-layout {
        padding: 0;
    }
    
    .about-section h1 {
        font-size: 2.5rem;
    }
    

    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .game-stats {
        grid-template-columns: 1fr;
    }
    
    .about-section p {
        font-size: 1.1rem;
    }
    
    .features-list h2 {
        font-size: 2rem;
    }
    
    .features-list li {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 0.75rem;
    }
    
    .features-list i {
        margin-right: 0.75rem;
        margin-bottom: 0;
        margin-top: 0.2rem;
    }

    /* Mobile: first line = icon + title, second line = description */
    .features-list li {
        display: block;
    }
    .features-list i {
        vertical-align: middle;
    }
    .features-list li strong {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0.25rem;
    }
    .features-list li strong::after {
        content: '';
        display: block;
    }
    
    .game-controls h2 {
        font-size: 2rem;
    }
    
    .controls-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .controls-section h3 {
        font-size: 1.3rem;
    }
    
    .controls-section li {
        font-size: 0.95rem;
    }
    
    .game-container {
        height: 400px;
        max-width: 100%;
        border-radius: 0;
    }
    
    .game-section {
        padding: 0;
    }
    
    .game-showcase {
        margin: 2rem 0;
        max-width: 100%;
    }
    
    .media-placeholder {
        height: 200px;
    }
    
    .media-placeholder i {
        font-size: 2.5rem;
    }
    
    .youtube-video iframe {
        height: 225px; /* 16:9 aspect ratio for mobile */
    }
    

}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #00ff88;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* SEO Schema */
.schema-json {
    display: none;
} 

/* Features (simplified list inside about) */
.about-section ul.features {
	list-style: none;
	padding: 0;
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.about-section ul.features li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(0, 255, 136, 0.1);
	border-radius: 10px;
	border-left: 4px solid #00ff88;
	transition: all 0.3s ease;
}

.about-section ul.features li:hover {
	background: rgba(0, 255, 136, 0.15);
	transform: translateX(5px);
}

.about-section ul.features i {
	font-size: 1.5rem;
	color: #00ff88;
	margin-right: 1rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.about-section ul.features strong {
	color: #333;
	font-weight: 700;
}

@media (max-width: 768px) {
	/* Mobile layout: first line icon+title, second line description */
	.about-section ul.features li { display: block; text-align: left; }
	.about-section ul.features i { margin-right: 0.75rem; margin-bottom: 0; margin-top: 0.2rem; vertical-align: middle; }
	.about-section ul.features li strong { display: inline-block; vertical-align: middle; margin-bottom: 0.25rem; }
	.about-section ul.features li strong::after { content: ''; display: block; }
} 

/* Article Typography */
article,
article.prose {
	text-align: left;
}

article .article-header .lede {
	font-size: 1.1rem;
	color: #666;
	margin-top: 0.5rem;
}

article h1 { margin: 0 0 1rem 0; line-height: 1.2; }
article h2 { margin: 2rem 0 1rem 0; line-height: 1.3; }
article h3 { margin: 1.5rem 0 0.75rem 0; line-height: 1.4; }

article p { margin: 0 0 1rem 0; line-height: 1.8; }

article ul,
article ol { padding-left: 1.25rem; margin: 0 0 1rem 0; }
article li { margin: 0.4rem 0; }

article a { color: #00ff88; text-decoration: none; }
article a:hover { text-decoration: underline; }

article figure { margin: 1rem 0; }
article img,
article video,
article iframe { max-width: 100%; height: auto; border: 0; display: block; }
article figcaption { font-size: 0.9rem; color: #666; margin-top: 0.25rem; }

article blockquote { border-left: 4px solid #00ff88; padding: 0.5rem 1rem; background: rgba(0,0,0,0.03); margin: 1rem 0; }

article code { background: rgba(0,0,0,0.06); padding: 0.1rem 0.3rem; border-radius: 4px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }
article pre { background: rgba(0,0,0,0.06); padding: 1rem; border-radius: 8px; overflow: auto; }
article kbd { background: #fafafa; border: 1px solid #ddd; border-bottom-width: 2px; border-radius: 4px; padding: 0 0.3rem; font-family: ui-monospace, monospace; }

article .table-wrap { overflow-x: auto; }
article table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
article th,
article td { border: 1px solid #e5e5e5; padding: 0.5rem 0.75rem; text-align: left; }
article thead th { background: #f7f7f7; } 

/* Article Container Card */
article,
article.prose {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 2rem;
	margin: 1.5rem 0 2.5rem 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
} 

/* Article media sizing on desktop */
@media (min-width: 1024px) {
	article figure,
	article .video {
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
	article img,
	article video,
	article iframe {
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
} 

/* Prevent upscaling small images inside article */
article img {
	width: auto !important;
	max-width: 100%;
	height: auto;
} 

/* Share Section */
#share { margin: 2rem 0; }
#share h2 { margin: 0 0 0.75rem 0; }
.share-buttons { text-align: left; margin: 0; }
.share-buttons > div { display: flex; justify-content: flex-start; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.share-buttons .btn { border: none; padding: 0.6rem 1rem; border-radius: 8px; cursor: pointer; color: #fff; display: inline-flex; align-items: center; gap: 0.5rem; transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.share-buttons .btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.35); }
.share-buttons .btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.share-buttons .btn--twitter { background: #1DA1F2; }
.share-buttons .btn--facebook { background: #4267B2; }
.share-buttons .btn--whatsapp { background: #25D366; }
.share-buttons .btn i { font-size: 1rem; }

@media (max-width: 600px) {
    #share h2 { text-align: center; }
	.share-buttons { text-align: center; }
	.share-buttons > div { justify-content: center; }
	.share-buttons .btn { width: calc(50% - 0.6rem); justify-content: center; }
}

/* Back to Top Floating Button */
.back-to-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #111;
	color: #fff;
	box-shadow: 0 8px 20px rgba(0,0,0,0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, filter 0.2s ease;
	z-index: 1000;
}
.back-to-top i { font-size: 1rem; }
.back-to-top:hover { filter: brightness(1.1); }
.back-to-top:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.35); }
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 480px) {
	.back-to-top { right: 12px; bottom: 12px; }
} 