body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #111;
    box-shadow: 0 0 20px #00ffff33;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px #0ff;
}

.notification {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff00ff;
}

.notification-menu {
    position: absolute;
    top: 40px;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff00ff55;
    z-index: 100;

    width: 200px;         
    max-width: 90vw;     
    max-height: 80vh;     
    overflow-y: auto;     
}

@media (max-width: 600px) {
    .notification-menu {
        width: 70vw;    
        right: 5vw;    
        top: 50px;     
        max-height: 70vh;
    }
}


.notification-menu ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.notification-menu li {
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

.hidden {
    display: none;
}

.intro {
    padding: 40px 10px 60px;
    text-align: center;
}

.intro h1 {
    font-size: 3rem;
    color: #00ffff;
}

.intro p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: auto;
}

.main-button {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: none;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 20px #00ffff88;
    cursor: pointer;
    transition: transform 0.2s;
}

.main-button:hover {
    transform: scale(1.05);
}

.game-block {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.game-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px #0ff5;
    max-width: 600px;
    text-align: center;
    padding: 10px;
}

.game-info h2 {
    font-size: 2rem;
    color: #ff00ff;
    margin-bottom: 10px;
}

.slide-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 15px #00ffff88;
}

.slide {
    width: 100%;
    display: none;
    border-radius: 12px;
}

.game-info-bottom {
    padding: 20px;
}

.game-info-bottom p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 10px;
}

.play-button {
    padding: 10px 24px;
    font-size: 1rem;
    background: #00ffff;
    color: #111;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px #00ffffaa;
}

.play-button:hover {
    background: #0ff;
    transform: scale(1.05);
}

footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 30px 10px;
    font-size: 0.9rem;
    box-shadow: 0 0 15px #0ff2;
}

/* Slide göstergeleri */
.slide-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #00ffff;
    box-shadow: 0 0 5px #0ff;
}

@media (max-width: 768px) {
    .intro h1 {
        font-size: 2rem;
    }
    
    .logo b {
      font-size: 20px;
    }
    
    .main-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .game-card {
        margin: 0 10px;
        max-width: 100%;
    }

    .notification-menu {
        right: 10px;
        width: 90vw;
    }
}

.feedback-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #00ffff;
    color: #111;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 0 15px #00ffffaa;
    cursor: pointer;
    font-weight: bold;
    z-index: 999;
    transition: all 0.3s ease;
}
.feedback-toggle:hover {
    transform: scale(1.05);
    background: #0ff;
}

.feedback-box {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 300px;
    background: #111;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 25px #00ffffaa;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feedback-box textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    resize: none;
    font-family: inherit;
}

.feedback-box button {
    background: #ff00ff;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.feedback-box button:hover {
    background: #ff33ff;
}

.hidden {
    display: none;
}

.social-media {
    text-align: center;
    margin: 40px 0 10px;
    font-size: 1.5rem;
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: #00ffff;
    transition: transform 0.2s;
}
.social-media a:hover {
    transform: scale(1.2);
    color: #ff00ff;
}

.about-container {
    padding: 60px 20px;
    text-align: center;
    color: #00ffff;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00ffff;
}

.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #111;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 30px #00ffff55;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}

.about-card img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 0 20px #00ffffaa;
    transition: transform 0.3s;
}

.about-card img:hover {
    transform: scale(1.05);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
    color: #eee;
}

.social-media {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(145deg, #0a0a0a, #111);
    color: #00ffff;
}

.social-media h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-icons a img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 0 8px #00ffff88);
}

.social-icons a img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px #00ffff);
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 6px #0ff); /* Neon efekti */
}
