* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d30 100%);
    min-height: 100vh;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.avatar-container {
    position: relative;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #5865f2;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    background-color: #747f8d;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.status-indicator.online {
    background-color: #3ba55d;
}

.status-indicator.idle {
    background-color: #faa81a;
}

.status-indicator.dnd {
    background-color: #ed4245;
}

.profile-info h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #5865f2, #7289da, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(88, 101, 242, 0.3);
}

.title {
    font-size: 1.2rem;
    color: #b9bbbe;
    margin-bottom: 20px;
}

.discord-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discord-status, .activity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(88, 101, 242, 0.2);
    border-radius: 10px;
    border-left: 4px solid #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(5px);
}

.discord-status i {
    color: #5865f2;
    font-size: 1.2rem;
}

.activity i {
    color: #3ba55d;
    font-size: 1.1rem;
}

main {
    display: grid;
    gap: 30px;
}

section {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 3px solid #5865f2;
    padding-bottom: 10px;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #2d2d30, #404040);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
}

.skill-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(5px);
}

.project-card:hover {
    border-color: #5865f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
    background: rgba(40, 40, 40, 0.7);
}

.project-card h3 {
    color: #5865f2;
    margin-bottom: 10px;
}

.project-card p {
    color: #b9bbbe;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5865f2;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #4752c4;
}

.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #2d2d30, #404040);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
    background: linear-gradient(135deg, #5865f2, #7289da);
}

.contact-link i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        justify-content: center;
    }
}

/* Dark theme scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #5865f2;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7289da;
}

/* About section text color */
.about p {
    color: #b9bbbe;
    line-height: 1.6;
}

/* Glow effects */
.hero {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(88, 101, 242, 0.1);
}

section {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(88, 101, 242, 0.05);
}
/* Discord aktivite stilleri */
.discord-status, .activity, .last-seen, .spotify-activity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(88, 101, 242, 0.2);
    border-radius: 10px;
    border-left: 4px solid #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(5px);
    margin-bottom: 8px;
}

.last-seen {
    border-left-color: #faa81a;
    border-color: rgba(250, 168, 26, 0.3);
    background: rgba(250, 168, 26, 0.2);
}

.spotify-activity {
    border-left-color: #1DB954;
    border-color: rgba(29, 185, 84, 0.3);
    background: rgba(29, 185, 84, 0.2);
}

.single-activity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    padding: 5px 0;
}

.single-activity:last-child {
    margin-bottom: 0;
}

.spotify-progress {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-left: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #1DB954;
    border-radius: 2px;
    transition: width 1s ease;
}

/* Online durumu için özel stil */
.discord-status.online {
    border-left-color: #3ba55d;
    border-color: rgba(59, 165, 93, 0.3);
    background: rgba(59, 165, 93, 0.2);
}

.discord-status.idle {
    border-left-color: #faa81a;
    border-color: rgba(250, 168, 26, 0.3);
    background: rgba(250, 168, 26, 0.2);
}

.discord-status.dnd {
    border-left-color: #ed4245;
    border-color: rgba(237, 66, 69, 0.3);
    background: rgba(237, 66, 69, 0.2);
}

/* Aktivite animasyonu */
.activity, .spotify-activity {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 5px rgba(88, 101, 242, 0.3); }
    50% { box-shadow: 0 0 15px rgba(88, 101, 242, 0.5); }
    100% { box-shadow: 0 0 5px rgba(88, 101, 242, 0.3); }
}
/* Hobiler bölümü */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hobby-item {
    text-align: center;
    padding: 25px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hobby-item:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.2);
}

.hobby-item i {
    font-size: 2.5rem;
    color: #5865f2;
    margin-bottom: 15px;
}

.hobby-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.hobby-item p {
    color: #b9bbbe;
    line-height: 1.5;
}

/* Hedefler bölümü */
.goals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    border-left: 4px solid #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.3);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateX(10px);
    background: rgba(40, 40, 40, 0.7);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.2);
}

.goal-item i {
    font-size: 1.5rem;
    color: #5865f2;
    min-width: 25px;
}

.goal-item span {
    color: #ffffff;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hobbies-grid {
        grid-template-columns: 1fr;
    }
    
    .goal-item {
        padding: 12px 15px;
    }
    
    .goal-item:hover {
        transform: translateX(5px);
    }
}
/* Coming Soon Projeler */
.project-card.coming-soon {
    position: relative;
    background: rgba(25, 25, 25, 0.8);
    border: 2px dashed rgba(88, 101, 242, 0.5);
    overflow: hidden;
}

.project-card.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 8px;
    border-left: 3px solid #5865f2;
}

.project-status i {
    color: #5865f2;
    font-size: 0.9rem;
}

.project-status span {
    color: #b9bbbe;
    font-size: 0.9rem;
    font-style: italic;
}

.projects-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    text-align: center;
}

.projects-note i {
    color: #5865f2;
    font-size: 1.2rem;
    margin-right: 10px;
}

.projects-note p {
    color: #b9bbbe;
    margin: 0;
    display: inline;
}

/* Hover efekti */
.project-card.coming-soon:hover {
    border-color: #5865f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}

.project-card.coming-soon:hover .coming-soon-badge {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}
/* Spotify özel stil */
.spotify-link {
    background: linear-gradient(135deg, #1DB954, #1ed760) !important;
}

.spotify-link:hover {
    background: linear-gradient(135deg, #1ed760, #1DB954) !important;
    box-shadow: 0 10px 20px rgba(29, 185, 84, 0.4) !important;
}