/* Genel Stil */
body {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    background: linear-gradient(45deg, #1a3c34, #4CAF50, #2d2d2d);
    background-size: 400%;
    animation: gradient 15s ease infinite;
    overflow-x: hidden;
}

/* Minecraft Blok Animasyonu - Arka Plan */
.minecraft-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-block {
    position: absolute;
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    border-radius: 15px 15px 5px 5px;
    animation: carFloat 8s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: -1;
    opacity: 0.8;
}

.floating-block:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-block:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.floating-block:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.floating-block:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
}

.floating-block:nth-child(5) {
    top: 80%;
    left: 60%;
    animation-delay: 4s;
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.floating-block:nth-child(6) {
    top: 15%;
    left: 70%;
    animation-delay: 5s;
    background: linear-gradient(45deg, #9370DB, #8A2BE2);
}

@keyframes carFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Minecraft Blok Parçacık Efekti */
.block-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: particle 2s ease-out forwards;
    pointer-events: none;
}

@keyframes particle {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0) translateY(-50px);
        opacity: 0;
    }
}

/* Gradyan Animasyonu */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navigasyon Çubuğu */
.navbar {
    background-color: rgba(76, 175, 80, 0.9);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo-img {
    height: 60px;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFD700;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #FFD700;
}

/* Kahraman Bölümü */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url('hero-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: titleGlow 3s ease-in-out infinite;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B, #4ECDC4, #45B7D1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B, #4ECDC4, #45B7D1);
    background-size: 300% 300%;
    animation: titleGlow 3s ease-in-out infinite;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.7;
}

@keyframes titleGlow {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        background-position: 100% 50%;
        transform: scale(1.05) rotate(1deg);
    }
    50% {
        background-position: 50% 100%;
        transform: scale(1.1) rotate(-1deg);
    }
    75% {
        background-position: 50% 0%;
        transform: scale(1.05) rotate(0.5deg);
    }
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
    animation: slideIn 1.5s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Oyun Bilgisi */
.game-info {
    padding: 50px 20px;
    text-align: center;
    background-color: rgba(26, 26, 26, 0.8);
    position: relative;
}

.game-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 10 0 L 20 10 L 10 20 L 0 10 Z" fill="none" stroke="rgba(76,175,80,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.game-info > * {
    position: relative;
    z-index: 2;
}

.game-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
    color: #4CAF50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: linear-gradient(135deg, #333, #444);
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.3s;
    opacity: 0;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #4CAF50;
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature img:hover {
    transform: scale(1.05);
}

.feature h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #FFD700;
}

.feature p {
    font-size: 14px;
    line-height: 1.4;
}

/* Haberler Bölümü */
.news {
    padding: 50px 20px;
    background-color: rgba(26, 26, 26, 0.9);
    text-align: center;
}

.news h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: linear-gradient(135deg, #333, #444);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #FFD700;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
}

.news-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-date {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Topluluk Bölümü */
.community {
    padding: 50px 20px;
    background-color: rgba(76, 175, 80, 0.1);
    text-align: center;
}

.community h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #4CAF50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.community-content {
    max-width: 1000px;
    margin: 0 auto;
}

.community-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 24px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 14px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.social-link.discord { background: linear-gradient(45deg, #7289DA, #5865F2); }
.social-link.reddit { background: linear-gradient(45deg, #FF4500, #FF6347); }
.social-link.youtube { background: linear-gradient(45deg, #FF0000, #CC0000); }
.social-link.twitter { background: linear-gradient(45deg, #1DA1F2, #0D8BD9); }

/* Mağaza Bölümü */
.store {
    padding: 50px 20px;
    background-color: rgba(26, 26, 26, 0.9);
    text-align: center;
}

.store h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.store-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.store-item {
    background: linear-gradient(135deg, #333, #444);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.store-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #FFD700;
}

.item-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.store-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
}

.store-item p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ccc;
}

.item-price {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 15px;
}

.buy-btn {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 40px 20px 20px;
    border-top: 2px solid #4CAF50;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Animasyonlar */
@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-text {
    animation: slideIn 1s ease-out;
}

.animate-card {
    animation: cardAppear 0.8s ease-out forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.2s; }
.animate-card:nth-child(2) { animation-delay: 0.4s; }
.animate-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardAppear {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Minecraft Creeper Animasyonu */
.creeper {
    position: fixed;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%2300FF00"/><rect x="20" y="20" width="15" height="15" fill="%23000000"/><rect x="65" y="20" width="15" height="15" fill="%23000000"/><rect x="35" y="45" width="30" height="10" fill="%23000000"/><rect x="25" y="60" width="50" height="30" fill="%23000000"/><rect x="15" y="70" width="10" height="20" fill="%23000000"/><rect x="75" y="70" width="10" height="20" fill="%23000000"/><rect x="30" y="90" width="15" height="10" fill="%23000000"/><rect x="55" y="90" width="15" height="10" fill="%23000000"/></svg>') no-repeat center center;
    background-size: contain;
    animation: creeperMove 20s linear infinite;
    opacity: 0.1;
    z-index: -1;
}

@keyframes creeperMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-50px, -50px) rotate(90deg); }
    50% { transform: translate(-100px, 0) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Oyun Seçenekleri */
.game-options {
    padding: 30px 0;
}

.game-options h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: titlePulse 2s ease-in-out infinite;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titlePulse {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-option {
    background: linear-gradient(135deg, #333, #444);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.game-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    transition: left 0.5s;
}

.game-option:hover::before {
    left: 100%;
}

.game-option:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #FFD700;
    background: linear-gradient(135deg, #444, #555);
}

.game-option:hover .game-icon {
    animation: iconBounce 0.6s ease-in-out;
    transform: scale(1.2);
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

.game-icon {
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-option h4 {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.game-option p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Oyun Seçenekleri */
@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .game-option {
        padding: 25px 15px;
    }
    
    .game-icon {
        font-size: 48px;
    }
    
    .game-option h4 {
        font-size: 18px;
    }
}





/* Geometry Dash Oyun Container Stilleri */
.geometry-dash-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.geometry-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-bottom: 3px solid #FFD700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.geometry-dash-header h3 {
    color: #fff;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.close-geometry-dash {
    background: #FF4444;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-geometry-dash:hover {
    background: #CC0000;
    transform: scale(1.1);
}

.geometry-dash-frame {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 160px);
    padding: 0;
    margin: 0;
    background: #000;
}

.geometry-dash-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    transform: translateZ(0);
    will-change: transform;
}

.geometry-dash-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 3px solid #FFD700;
    z-index: 10000;
}

.geometry-dash-controls p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Subway Surfers Oyun Container Stilleri */
.subway-surfers-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.subway-surfers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-bottom: 3px solid #FFD700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.subway-surfers-header h3 {
    color: #fff;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.close-subway-surfers {
    background: #FF4444;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-subway-surfers:hover {
    background: #CC0000;
    transform: scale(1.1);
}

.subway-surfers-frame {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 160px);
    padding: 0;
    margin: 0;
    background: #000;
}

.subway-surfers-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    transform: translateZ(0);
    will-change: transform;
}

.subway-surfers-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 3px solid #FFD700;
    z-index: 10000;
}

.subway-surfers-controls p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Temple Run Oyun Container Stilleri */
.temple-run-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.temple-run-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-bottom: 3px solid #FFD700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.temple-run-header h3 {
    color: #fff;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.close-temple-run {
    background: #FF4444;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-temple-run:hover {
    background: #CC0000;
    transform: scale(1.1);
}

.temple-run-frame {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 160px);
    padding: 0;
    margin: 0;
    background: #000;
}

.temple-run-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    transform: translateZ(0);
    will-change: transform;
}

.temple-run-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 3px solid #FFD700;
    z-index: 10000;
}

.temple-run-controls p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Flappy Bird Oyun Container Stilleri */
.flappy-bird-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.flappy-bird-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #87CEEB, #98FB98);
    border-bottom: 3px solid #FFD700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.flappy-bird-header h3 {
    color: #fff;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.close-flappy-bird {
    background: #FF4444;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-flappy-bird:hover {
    background: #CC0000;
    transform: scale(1.1);
}

.flappy-bird-frame {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 160px);
    padding: 0;
    margin: 0;
    background: #000;
}

.flappy-bird-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    transform: translateZ(0);
    will-change: transform;
}

.flappy-bird-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 3px solid #FFD700;
    z-index: 10000;
}

.flappy-bird-controls p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 18px; }
    .nav-links { gap: 15px; }
    .nav-links li a { font-size: 14px; }
    .feature { width: 100%; max-width: 300px; }
    .floating-block { width: 30px; height: 30px; }
    .news-grid { grid-template-columns: 1fr; }
    .store-items { grid-template-columns: 1fr; }
  
    .community-stats { flex-direction: column; }
    .social-links { flex-direction: column; align-items: center; }
    
    .geometry-dash-header h3,
    .subway-surfers-header h3,
    .temple-run-header h3,
    .flappy-bird-header h3 {
        font-size: 18px;
    }
    
    .geometry-dash-controls,
    .subway-surfers-controls,
    .temple-run-controls,
    .flappy-bird-controls {
        padding: 15px;
    }
}