@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;
}

.hidden {
    display: none;
}

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

.review-card {
    background-color: #111;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

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

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

.reviewer-info {
    flex: 1;
}

.reviewer-name-rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name-rating h3 {
    margin: 0;
    font-size: 16px;
}

.rating {
    display: flex;
    color: #ff9800;
    font-size: 14px;
}

.review-text {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.review-date {
    display: block;
    font-size: 12px;
    color: #999;
    text-align: right;
}

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

.portfolio-item {
    background-color: #111;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

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

.portfolio-description {
    padding: 15px;
}

.portfolio-description h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
}

.portfolio-description p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

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;
}

.portfolio-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

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

.portfolio-item:hover {
    transform: translateY(-5px);
}

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

.portfolio-description {
    padding: 20px;
}

.portfolio-description h3 {
    margin-bottom: 10px;
    color: #fff;
}

.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;
}

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: 50px;
    height: 50px;
    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;
}

.reviews-section {
    margin-top: 2rem;
    background-color: #111;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reviews-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.review-card {
    background-color: #0d1117;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.review-profile {
    display: flex;
    align-items: center;
}

.review-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stars {
    display: flex;
}

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

.star.filled {
    color: #FFD700;
}

.rating-text {
    font-size: 0.75rem;
    color: #8b949e;
    margin-top: 0.25rem;
}

.review-content {
    color: #f0f6fc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.no-reviews {
    color: #8b949e;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    nav ul {
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .music-player {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .album-art img {
        margin-bottom: 10px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

#status-indicator {
    position: absolute;
    bottom: 15%;
    right: 25%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    outline: 4px solid black;
    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;
}