* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: url('banana.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: 40px 20px;
}

/* Overlay için background blur efekti */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    z-index: -1;
}

/* Video Bölümü */
.video-section {
    position: relative;
    animation: floatUp 2s ease-in-out infinite;
    margin-top: 0;
    width: 100%;
    max-width: 480px;
    order: 2;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.video-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4444, #ff0000);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.video-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-container {
    width: 480px;
    height: 270px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: rgba(207, 186, 150, 0.95);
    padding: 5px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.video-1 {
    animation: rotateLeft 3s ease-in-out infinite;
}

.video-2 {
    animation: rotateRight 3s ease-in-out infinite;
}

@keyframes rotateLeft {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-3deg);
    }
}

@keyframes rotateRight {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.video-container:hover {
    transform: scale(1.02) rotate(0deg) !important;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.container {
    width: 100%;
    max-width: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.profile-card {
    background: rgba(207, 186, 150, 0.95);
    border-radius: 24px;
    padding: 50px 40px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.profile-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.bio {
    text-align: center;
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 35px;
    font-weight: 400;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(179, 158, 126, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.member-count-badge {
    position: absolute;
    left: 16px;
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-button:hover::before {
    opacity: 1;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.link-button:active {
    transform: translateY(0);
}

.icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Platform-specific hover colors */
.telegram:hover {
    background: rgba(42, 171, 238, 0.95);
}

.youtube:hover {
    background: rgba(255, 0, 0, 0.95);
}

.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok:hover {
    background: rgba(0, 0, 0, 0.95);
}

.x:hover {
    background: rgba(0, 0, 0, 0.95);
}

.github:hover {
    background: rgba(36, 41, 46, 0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .video-section {
        width: 100%;
        max-width: 400px;
        margin-top: 0;
        order: 1;
    }
    
    .container {
        order: 2;
    }
    
    .video-wrapper {
        gap: 15px;
    }
    
    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .profile-card {
        padding: 40px 30px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .username {
        font-size: 22px;
    }
    
    .bio {
        font-size: 14px;
    }
    
    .link-button {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .profile-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .profile-image {
        width: 90px;
        height: 90px;
    }
    
    .username {
        font-size: 20px;
    }
    
    .links {
        gap: 12px;
    }
    
    .link-button {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .icon {
        width: 20px;
        height: 20px;
    }
}
