@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Mobil için smooth scrolling */
    scroll-behavior: smooth;
    /* Mobil için touch optimizasyonu */
    -webkit-overflow-scrolling: touch;
    /* Mobil için zoom engelleme */
    touch-action: manipulation;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #222;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: #333;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.portfolio-description {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-description h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-description p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.9rem;
}

.devices-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
}

.device-card {
    background-color: #111;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
}

.device-icon {
    margin-bottom: 15px;
    color: #fff;
}

.device-specs {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.device-specs span {
    background-color: #222;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.gallery-container {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
}

.game-card {
    background-color: #111;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card h3 {
    padding: 15px 15px 5px 15px;
}

.game-card p {
    padding: 0 15px 15px 15px;
    font-size: 0.9rem;
    color: #aaa;
}

.game-button {
    margin: 0 15px 15px 15px;
    padding: 8px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.game-button:hover {
    background-color: #555;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: #fff;
    text-decoration: none;
}

nav {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

/* Mobil hamburger menü */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.mobile-menu-toggle:hover {
    color: #ff6b6b;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

nav ul li:nth-child(1) .nav-icon {
    color: #ff7700; 
}

nav ul li:nth-child(2) .nav-icon {
    color: #4285f4; 
}

nav ul li:nth-child(3) .nav-icon {
    color: #fbbc05;
}

nav ul li:nth-child(4) .nav-icon {
    color: #34a853; 
}

nav ul li:nth-child(5) .nav-icon {
    color: #ea4335;
}

nav ul li:nth-child(6) .nav-icon {
    color: #9c27b0;
}

nav a {
    padding: 5px 10px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b6b;
}

nav a.active {
    border-bottom: 2px solid #ff6b6b;
}

nav .nav-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

nav a {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a.active .nav-icon {
    fill: #f97316;
}

nav a:hover .nav-icon {
    fill: #f97316; 
}

nav a[href="index.html"] .nav-icon {
    fill: #f97316;
}

nav a[href="projects.html"] .nav-icon {
    fill: #3b82f6;
}

nav a[href="skills.html"] .nav-icon {
    fill: #f43f5e;
}

nav a[href="index.html"]:hover .nav-icon,
nav a[href="index.html"].active .nav-icon {
    fill: #f97316;
}

nav a[href="projects.html"]:hover .nav-icon,
nav a[href="projects.html"].active .nav-icon {
    fill: #3b82f6;
}

nav a[href="skills.html"]:hover .nav-icon,
nav a[href="skills.html"].active .nav-icon {
    fill: #f43f5e;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    opacity: 0;
}

.hero h1.animate {
    animation: fadeInDown 0.8s ease forwards;
}

.hero p {
    opacity: 0;
}

.hero p.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.home-icon {
    display: inline-flex;
    align-items: center;
}

.home-icon svg {
    width: 35px;
    height: 35px;
    fill: #f97316;
}

.projects-icon {
    display: inline-flex;
    align-items: center;
}

.projects-icon svg {
    width: 32px;
    height: 32px;
    fill: #3b82f6;
    vertical-align: middle;
    margin-bottom: 5px;
}


.skills-icon {
    color: #ff6b6b;
}

.highlight {
    color: #3a86ff;
    text-decoration: underline;
}

.country {
    color: #ff6b6b;
}

.social-icons {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
}

.social-icons.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.social-icons img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 1;
}

.date {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
    opacity: 0;
}

.date.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.profile-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 0;
    width: 100%;
    opacity: 0;
}

.profile-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
}

.username {
    font-weight: 600;
}

.username-tag {
    font-weight: 400;
    color: #888;
}

.last-seen {
    font-size: 0.8rem;
    color: #888;
}

.music-player {
    display: flex;
    align-items: center;
    background-color: #111;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    width: 100%;
    opacity: 0;
}

.music-player.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.album-art img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    margin-right: 15px;
}

.song-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.album-name {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.player-source {
    font-size: 0.7rem;
    color: #666;
    display: flex;
    align-items: center;
}

.player-source::before {
    content: "●";
    color: #1DB954;
    margin-right: 5px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.project-card {
    background-color: #0d1117;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    opacity: 0;
}

.project-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-info {
    padding: 15px;
}

.project-info h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.external-link {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.external-link:hover {
    opacity: 1;
}

.project-info p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    gap: 8px;
}

.tag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.js-tag {
    background-color: #f7df1e;
    background-image: url('assets/icons/JavaScript.svg');
    background-size: 75%;
}

.ps-tag {
    background-color: #f7df1e;
    background-image: url('assets/icons/Photoshop.svg');
    background-size: 75%;
}

.djs-tag {
    background-color: #242938;
    background-image: url('./assets/icons/DiscordJS-Dark.svg');
    background-size: 80%;
}

.nodejs-tag {
    background-color: #242938;
    background-image: url('./assets/icons/NodeJS-Dark.svg');
    background-size: 80%;
}

.java-tag {
    background-color: #242938;
    background-image: url('../assets/icons/java.svg');
    background-size: 80%;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-card {
    background-color: #0d1117;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1/1;
    
    opacity: 0;
}

.skill-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.skill-card img {
    width: 60%;
    height: auto;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
    margin-top: auto;
}

.skills-icon {
    display: inline-flex;
    align-items: center;
}

.skills-icon svg {
    width: 32px;
    height: 32px;
    fill: #f43f5e;
    vertical-align: middle;
    margin-bottom: 5px;
}

.music-player p {
    color: #f0f6fc;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.music-player p.artist {
    color: #8b949e;
    font-size: 0.8rem;
}

.music-player .progress-bar {
    background-color: #30363d;
    height: 5px;
    border-radius: 3px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.music-player .progress {
    background-color: #58a6ff;
    height: 100%;
    width: 10%;
    border-radius: 3px;
}

.music-player .time {
    color: #8b949e;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    margin-top: 0.2rem;
}

/* Mobil Tasarım İyileştirmeleri */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        max-width: 100%;
    }
    
    /* Navigasyon mobil optimizasyonu */
    nav ul {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
    }
    
    nav ul li {
        flex: 1;
        min-width: 80px;
    }
    
    nav a {
        padding: 8px 4px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }
    
    nav .nav-icon {
        width: 18px;
        height: 18px;
        margin: 0;
    }
    
    /* Hero section mobil */
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.9rem;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Profil kartı mobil */
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .avatar {
        margin-bottom: 15px;
    }
    
    .avatar img {
        width: 100px;
        height: 100px;
    }
    
    #status-indicator {
        width: 25px;
        height: 25px;
        bottom: 5px;
        right: 5px;
    }
    
    /* Müzik çalar mobil */
    .music-player {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .album-art {
        margin-bottom: 15px;
    }
    
    .album-art img {
        width: 80px;
        height: 80px;
        margin: 0;
    }
    
    .song-info {
        width: 100%;
    }
    
    /* Sosyal medya ikonları */
    .social-icons {
        gap: 20px;
        margin: 25px 0;
        flex-wrap: wrap;
    }
    
    .social-icons img {
        width: 28px;
        height: 28px;
    }
    
    /* Grid sistemleri mobil */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .devices-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .games-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Kart boyutları mobil */
    .project-card,
    .skill-card,
    .device-card,
    .game-card {
        padding: 15px;
    }
    
    .project-image {
        height: 150px;
    }
    
    /* Yazı boyutları mobil */
    .project-info h2 {
        font-size: 1.1rem;
    }
    
    .project-info p {
        font-size: 0.85rem;
    }
    
    .skill-name {
        font-size: 0.75rem;
    }
}

/* Küçük mobil cihazlar için optimizasyon */
@media (max-width: 480px) {
    .container {
        padding: 8px;
    }
    
    /* Navigasyon çok küçük ekranlar için */
    nav ul {
        gap: 2px;
    }
    
    nav a {
        padding: 6px 2px;
        font-size: 0.7rem;
    }
    
    nav .nav-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Hero section küçük mobil */
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    /* Profil kartı küçük mobil */
    .avatar img {
        width: 80px;
        height: 80px;
    }
    
    #status-indicator {
        width: 20px;
        height: 20px;
    }
    
    /* Müzik çalar küçük mobil */
    .album-art img {
        width: 60px;
        height: 60px;
    }
    
    .song-title {
        font-size: 0.85rem;
    }
    
    .album-name {
        font-size: 0.75rem;
    }
    
    /* Grid sistemleri küçük mobil */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .devices-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    /* Sosyal medya ikonları küçük mobil */
    .social-icons {
        gap: 15px;
    }
    
    .social-icons img {
        width: 24px;
        height: 24px;
    }
    
    /* Kart padding'leri küçük mobil */
    .project-card,
    .skill-card,
    .device-card,
    .game-card,
    .music-player,
    .profile-card {
        padding: 12px;
    }
    
    /* Yazı boyutları küçük mobil */
    .username {
        font-size: 1.1rem;
    }
    
    .last-seen {
        font-size: 0.75rem;
    }
    
    .date {
        font-size: 0.75rem;
        margin-top: 15px;
        padding-bottom: 15px;
    }
}

.avatar {
    position: relative;
    width: fit-content;
}

#discord-avatar {
    border-radius: 50%;
}

#status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.status-çevrimiçi {
    background-color: #43b581;
}

.status-boşta {
    background-color: #faa61a;
}

.status-rahatsız {
    background-color: #f04747;
}

.status-çevrimdışı {
    background-color: #747f8d;
}

.contact-form {
    max-width: 600px;
    width: 80%;
    margin: 1rem auto;
    padding: 3rem 4rem;
    background-color: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.form-group {
    margin-bottom: 5px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 3px;
    background-color: #161b22;
    border: 2px solid #30363d;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #484f58;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #58a6ff;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
    background-color: #1c2128;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: block;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 1rem 13rem;
    background-color: #238636;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background-color: #2ea043;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-icon {
    display: inline-flex;
    margin-left: 0.75rem;
    vertical-align: middle;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: #58a6ff;
    transition: transform 0.3s ease;
}

.contact-icon:hover svg {
    transform: scale(1.1);
}

nav a[href="order.html"] .nav-icon {
    fill: #665eff;
}

nav a[href="order.html"]:hover .nav-icon,
nav a[href="order.html"].active .nav-icon {
    fill: #665eff;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
        margin: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    padding: 20px 0;
}

.review-card {
    background-color: #0d1117;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
}

.review-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.reviewer-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #f0f6fc;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #f97316;
    font-size: 1.2rem;
}

.star.half {
    opacity: 0.5;
}

.review-text {
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    display: block;
    font-size: 0.8rem;
    color: #6e7681;
}

nav a[href="reviews.html"] .nav-icon {
    fill: #f97316;
}

nav a[href="reviews.html"]:hover .nav-icon,
nav a[href="reviews.html"].active .nav-icon {
    fill: #f97316;
}
nav a[href="singles.html"] .nav-icon {
    fill: #a855f7;
}

nav a[href="singles.html"]:hover .nav-icon,
nav a[href="singles.html"].active .nav-icon {
    fill: #a855f7;
}

.music-icon svg {
    width: 32px;
    height: 32px;
    fill: #9370DB;
    vertical-align: middle;
    margin-bottom: 5px;
}

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    width: 32px;
    height: 32px;
    fill: #f97316;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .review-card {
        padding: 15px;
    }
}

.recently-played-section {
    margin-top: 2rem;
}

.loading-message {
    text-align: center;
    padding: 2rem;
    color: #888;
}

.tracks-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.track-item {
    display: grid;
    grid-template-columns: 40px 60px 1fr 80px 120px;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.track-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 185, 84, 0.3);
    transform: translateY(-2px);
}

.track-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #888;
    text-align: center;
}

.track-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.track-info {
    min-width: 0;
}

.track-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artists {
    font-size: 0.9rem;
    color: #1DB954;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-album {
    font-size: 0.85rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-duration {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

.track-played-at {
    font-size: 0.85rem;
    color: #888;
    text-align: right;
}

.no-tracks, .error-message {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-style: italic;
}

.error-message {
    color: #ff6b6b;
}

.music-icon {
    color: #1DB954;
}

.music-icon svg {
    width: 32px;
    height: 32px;
    fill: #9370DB;
    vertical-align: middle;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .track-item {
        grid-template-columns: 30px 50px 1fr 60px;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .track-played-at {
        display: none;
    }
    
    .track-image img {
        width: 50px;
        height: 50px;
    }
    
    .track-name {
        font-size: 1rem;
    }
    
    .track-artists {
        font-size: 0.85rem;
    }
    
    .track-album {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .track-item {
        grid-template-columns: 25px 40px 1fr;
        gap: 0.5rem;
    }
    
    .track-duration {
        display: none;
    }
    
    .track-image img {
        width: 40px;
        height: 40px;
    }
}
.order-icon svg {
    width: 40px;
    height: 40px;
    fill: #665eff;
    margin-left: 10px;
    vertical-align: middle;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
    flex-wrap: wrap;
}

.price-card {
    background-color: #111;
    border-radius: 10px;
    padding: 25px;
    width: 50%;
    max-width: 500px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #222;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(0.1s * var(--animation-order, 0));
}

.price-card:nth-child(1) {
    --animation-order: 1;
}

.price-card:nth-child(2) {
    --animation-order: 2;
}

.price-card:nth-child(3) {
    --animation-order: 3;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(102, 94, 255, 0.1);
    border-color: #665eff;
}

.price-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.price {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    color: #665eff;
    font-size: 1.8rem;
    font-weight: 700;
}

.features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.features li {
    padding: 8px 0;
    color: #ddd;
    position: relative;
    padding-left: 20px;
}

.features li::before {
    content: "✓";
    color: #665eff;
    position: absolute;
    left: 0;
}

.buy-btn {
    background-color: #665eff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.buy-btn:hover {
    background-color: #5348ff;
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.swal2-confirm-button {
    background-color: #7289DA !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
    margin: 5px !important;
}

.swal2-confirm-button:hover {
    background-color: #677bc4 !important;
}

.swal2-deny-button {
    background-color: #BBBBBB !important; 
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
    margin: 5px !important;
}

.swal2-deny-button:hover {
    background-color: #A0A0A0 !important;
}

.swal2-popup {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

.swal2-title {
    color: #fff !important;
}

/* Mobil için gelişmiş touch hedefleri */
@media (max-width: 768px) {
    /* Tüm tıklanabilir elementler için minimum boyut */
    nav a,
    .social-icons a,
    .game-button,
    .buy-btn,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hover efektleri mobilde touch için */
    .portfolio-item:active,
    .project-card:active,
    .skill-card:active,
    .device-card:active,
    .game-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Mobil için daha büyük tap hedefleri */
    .social-icons a {
        padding: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .social-icons a:active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
    }
}

/* Mobil için gelişmiş animasyonlar */
@media (max-width: 768px) {
    /* Daha hızlı animasyonlar mobil için */
    .portfolio-item,
    .project-card,
    .skill-card,
    .device-card,
    .game-card {
        transition: all 0.2s ease;
    }
    
    /* Mobil için özel hover efektleri */
    .portfolio-item:hover,
    .project-card:hover,
    .skill-card:hover,
    .device-card:hover,
    .game-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
}

/* Mobil için sticky navigation */
@media (max-width: 768px) {
    nav {
        position: sticky;
        top: 0;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 100;
        padding: 10px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid #333;
    }
    
    nav ul {
        margin: 0;
        padding: 5px 0;
    }
}

/* Mobil için gelişmiş scroll deneyimi */
@media (max-width: 768px) {
    .container {
        scroll-margin-top: 80px;
    }
    
    /* Mobil için daha iyi spacing */
    main {
        padding-top: 10px;
    }
    
    .hero {
        margin-bottom: 20px;
    }
    
    .profile-card {
        margin-bottom: 15px;
    }
    
    .music-player {
        margin-bottom: 15px;
    }
}

/* Mobil için gelişmiş typography */
@media (max-width: 768px) {
    /* Daha iyi okunabilirlik için line-height */
    body {
        line-height: 1.5;
    }
    
    .hero p,
    .project-info p,
    .review-text {
        line-height: 1.6;
    }
    
    /* Mobil için daha iyi contrast */
    .username {
        color: #fff;
        font-weight: 600;
    }
    
    .last-seen {
        color: #aaa;
    }
    
    .song-title {
        color: #fff;
        font-weight: 500;
    }
    
    .album-name {
        color: #999;
    }
}

/* Mobil için loading states */
@media (max-width: 768px) {
    .loading-message {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    .error-message {
        padding: 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
        background-color: rgba(255, 107, 107, 0.1);
        border: 1px solid rgba(255, 107, 107, 0.3);
    }
}

/* Mobil için accessibility improvements */
@media (max-width: 768px) {
    /* Focus states mobil için */
    nav a:focus,
    .social-icons a:focus,
    .game-button:focus,
    .buy-btn:focus {
        outline: 2px solid #ff6b6b;
        outline-offset: 2px;
    }
    
    /* Reduced motion için */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}