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

body {
    font-family: 'Poppins', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('Jrokez_wp.png'); 

}
    

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Section */
.header {
    text-align: center;
    padding: 60px 0 40px;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #929292;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.title span {
    display: block;
    margin: 0; 
    line-height: 1.1; 
}


.title .oguzhan,
.title .dalgakiran {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 43px;
}


.title .jrokez {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 170px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
}


.title .oguzhan {
    margin-bottom: -62px;
}

.title .jrokez {
    margin-bottom: -82px;
}


.title:hover .oguzhan,
.title:hover .dalgakiran {
    transform: translateY(-1px);
    color: #929292;
}

.title:hover .jrokez {
    transform: scale(1.05);
    color: #ffffff;
}


@media (max-width: 1200px) {
    .title .oguzhan,
    .title .dalgakiran {
        font-size: 50px;
    }

    .title .jrokez {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .title .oguzhan,
    .title .dalgakiran {
        font-size: 36px;
    }

    .title .jrokez {
        font-size: 80px;
    }
}



.tab-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto;

}

.tab-btn {
    background: none;
    border: none;
    color: #888888;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    padding-right: 30px;

}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background: #ffffff;
    color: #0a0a0a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    flex: 1;
    padding-bottom: 40px;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.video-wrapper {
    flex: 1;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

#current-video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.photo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.photo-wrapper {
    flex: 1;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#current-photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.video-info, .photo-info {
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    font-weight: 100;
}

.qr-section {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
    padding-bottom: 15px;
    gap: 10px; 
}


.qr-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-container:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.qr-code {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    margin-bottom: 1px;
    transition: transform 0.3s ease;
}

.qr-container:hover .qr-code {
    transform: scale(1.02);
}

.qr-text {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qr-section {
        order: -1;
    }
    
    .qr-container {
        padding: 20px;
    }
    
    .qr-code {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 40px 0 30px;
    }
    
    .title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .content-area {
        padding: 8px;
    }
    
    .video-container, .photo-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .tab-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .content-area {
        padding: 16px;
    }
    
    .video-wrapper, .photo-wrapper {
        aspect-ratio: 4/3;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #888888;
}





* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
} 


.upload-btn-container {
    text-align: center;
    margin-top: 20px;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    padding-bottom: -30px;
}

.upload-btn:hover {
    background-color: #ddd;
    transform: translateY(-2px);
}

.upload-icon {
    width: 24px;
    height: 24px;
}



.site-footer {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #888888;

    position: fixed;      
    bottom: 0;            
    left: 50%;            
    transform: translateX(-50%); 
    text-align: center;
    padding: 10px 0;
    width: auto;          
    z-index: 999;         
}


.tab-selector a.tab-btn {
    text-decoration: none; 
}

