:root {
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-purple: #bc13fe;
    --dark-bg: #0a0a0f;
    --panel-bg: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Pixel Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Header & Lang Switcher */
.lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(18, 18, 26, 0.9);
    padding: 8px;
    border-radius: 30px;
    border: 1px solid var(--neon-cyan);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.lang-btn.active {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.lang-btn:hover:not(.active) {
    color: var(--neon-cyan);
}

nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(18, 18, 26, 0.9);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(10px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

/* Profile Image Styles */
.hero-profile-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 30px;
    position: relative;
    padding: 5px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    z-index: 2;
}

.hero-profile-container::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--neon-pink);
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 20px var(--neon-cyan);
    margin-bottom: 10px;
    z-index: 2;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--neon-pink);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    z-index: 2;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
    z-index: 2;
}

.cta-button {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    z-index: 2;
}

.cta-button:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--neon-cyan);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-image-wrapper {
    width: 250px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(188, 19, 254, 0.5);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.2);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.timeline {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-pink));
    box-shadow: 0 0 10px var(--neon-cyan);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-content {
    background: var(--panel-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--neon-cyan);
    border-radius: 50%;
    top: 30px;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

/* GAMES SECTION (PRO DESIGN) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.game-card {
    background: var(--panel-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(188, 19, 254, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.2);
}

.game-media {
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}

/* Yatay Kartlar İçin (Eco Tales, Faruk Flick Up) */
.card-horizontal .game-media {
    height: 200px; /* Yatay video/görsel yüksekliği */
}

/* Dikey Kartlar İçin (Bamboozle) */
.card-vertical .game-media {
    height: 350px; /* Mobil format yüksekliği */
}

.game-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.game-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.object-contain {
    object-fit: contain; /* Yatay videoyu dikey karta sığdırırken kesmemesi için */
    background: #000;
}

.game-card:hover .game-cover {
    opacity: 0;
}

.game-card:hover .game-video {
    opacity: 1;
}

.game-icon-overlay {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--panel-bg);
    border-radius: 15px;
    padding: 5px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 10;
    transition: transform 0.3s;
}

.game-card:hover .game-icon-overlay {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--neon-pink);
}

.game-icon-overlay img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.game-info {
    padding: 35px 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--neon-cyan);
}

.game-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.game-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    padding: 5px 12px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.play-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    border: none;
    color: white;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.play-btn:hover {
    box-shadow: 0 0 20px var(--neon-purple);
    transform: scale(1.02);
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.skill-card {
    background: var(--panel-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.skill-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.skill-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--neon-cyan);
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 10px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Contact Section */
.contact-container {
    background: var(--panel-bg);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background: #050508;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 60px; text-align: left !important; }
    .timeline-dot { left: 10px !important; right: auto !important; }
    nav ul { gap: 15px; font-size: 0.8rem; }
    .lang-switch { top: auto; bottom: 20px; right: 50%; transform: translateX(50%); }
    section { padding: 60px 20px; }
    .hero-profile-container { width: 150px; height: 150px; }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, background 0.1s;
    box-shadow: 0 0 10px var(--neon-cyan);
}
.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
}
/* WhatsApp Özel Rengi */
.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Modal (Açılır Pencere) Stilleri */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.modal-content {
    background: var(--panel-bg);
    margin: 5% auto;
    padding: 30px;
    border: 2px solid var(--neon-cyan);
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
    text-align: center;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.close-btn {
    color: var(--neon-pink);
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-pink);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Slider (Galeri) Stilleri */
.slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-images img.active {
    opacity: 1;
    z-index: 2;
}

/* Dikey oyun resimlerini tam sığdırmak için */
.slider-images img.object-contain {
    object-fit: contain;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 243, 255, 0.2);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 5px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* Google Play İndirme Butonu */
.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00f3ff, #bc13fe);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    margin-top: auto;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #bc13fe;
}