* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
    background-color: #030014;
    color: #000000;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #030014;
    backdrop-filter: blur(10px);
    border-bottom: none
}

.nav-container {
    max-width: 1200px;
    background-color: #030014 !important;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 4rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.main-content {
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    opacity: 2rem;
}

.badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge span {
    background: rgba(59, 130, 246, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.hero-right {
    display: flex;
    justify-content: center;
}

.profile-section {
    position: relative;
}

/* PROFİL RESMİ BURADA BÜYÜDÜLDÜ */
.profile-image {
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WhatsApp Widget Stilleri */
.chat-header,
.chat-content,
.message-input {
    position: fixed;
    right: 20px;
    width: 300px;
    background-color: #e5ddd5;
    z-index: 10002;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    font-family: "Segoe UI", sans-serif;
}

.chat-header {
    top: calc(100% - 420px);
    height: 60px;
    background-color: #075e54;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.avatar-container {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.chat-header img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #25d366;
    border-radius: 50%;
    border: 2px solid #075e54;
}

.chat-header-info {
    flex-grow: 1;
}

.chat-header h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}

.online-status {
    font-size: 12px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chat-content {
    top: calc(100% - 360px);
    height: 300px;
    padding: 20px;
    overflow-y: auto;
}

.message {
    max-width: 80%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border-radius: 7.5px;
    position: relative;
    word-wrap: break-word;
}

.message.received {
    background-color: #ffffff;
    align-self: flex-start;
}

.message.sent {
    background-color: #ffffff;
    align-self: flex-end;
    margin-left: auto;
}

.message-input {
    bottom: 20px;
    height: 60px;
    display: flex;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

.typing-indicator {
    background-color: #e5ddd5;
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.typing-indicator span {
    height: 10px;
    width: 10px;
    float: left;
    margin: 0 1px;
    background-color: #9e9ea1;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    animation: 1s blink infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    animation: 1s blink infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    animation: 1s blink infinite 0.9999s;
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    animation: wave 2s infinite;
}

.chat-icon img {
    width: 35px;
    height: 35px;
}

@keyframes wave {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* WP KOD BITIYOR /*

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .profile-image {
        width: 36rem;
        height: 36rem;
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 auto;
    justify-content: center;
    max-width: 320px;
}

.social-link {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link.github {
    background: rgba(36, 41, 47, 0.1);
    color: #24292f;
}

.social-link.github::before {
    background: linear-gradient(135deg, #24292f 0%, #0d1117 100%);
}

.social-link.github:hover {
    color: white;
    box-shadow: 0 20px 40px rgba(36, 41, 47, 0.4);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-link.instagram::before {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-link.instagram:hover {
    color: white;
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.4);
}

.social-link.discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
}

.social-link.discord::before {
    background: linear-gradient(135deg, #5865f2 0%, #3c45a5 100%);
}

.social-link.discord:hover {
    color: white;
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.4);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .profile-image {
        width: 36rem;
        height: 36rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }

    .chat-header,
    .chat-content,
    .message-input {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 16rem;
        height: 16rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .chat-header,
    .chat-content,
    .message-input {
        width: 260px;
        right: 10px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }

.profile-image {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.profile-image.animate {
    opacity: 1;
}