/* Ana Stiller */
body {
    padding-top: 70px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-wrapper {
    min-height: calc(100vh - 200px);
}

section {
    padding: 80px 0;
}

/* Hero Bölümü */
#home {
    background: linear-gradient(rgba(142, 84, 193, 0.7), rgba(186, 119, 223, 0.3));
    background-size: cover;
    background-position: center;
    color: #FBF9FA;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -70px;
    position: relative;
    overflow: hidden;
}

/* Animasyonlu Arka Plan Elementleri */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

.floating-particle {
    position: absolute;
    background: linear-gradient(135deg, #BA77DF, #8E54C1);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.particle-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.particle-3 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 4s;
}

.particle-4 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: 6s;
}

.particle-5 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 50%;
    animation-delay: 8s;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, #4b55f0, #0ef0ad);
    opacity: 0.2;
    animation: rotate 20s infinite linear;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 10%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    border-radius: 21% 79% 58% 42% / 55% 13% 87% 45%;
    bottom: 10%;
    left: 5%;
    animation-direction: reverse;
}

/* Hero Görsel Animasyonları */
.hero-img {
    position: relative;
}

.circle-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(14, 240, 173, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.circle-shape-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(75, 85, 240, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.icon-box-one, .icon-box-two {
    position: absolute;
    background: rgba(16, 15, 45, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.icon-box-one {
    top: 20px;
    right: -30px;
}

.icon-box-two {
    bottom: 40px;
    left: -30px;
}

.icon-box-one .icon, .icon-box-two .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #0ef0ad, #4b55f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.icon-box-one .text h5, .icon-box-two .text h5 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    color: #FBF9FA;
}

.icon-box-one .text p, .icon-box-two .text p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Animasyon Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Element Animasyonları */
.pulsate-animation {
    animation: pulsate 3s infinite ease-in-out;
}

.rotate-animation {
    animation: rotate 20s infinite linear;
}

.bounce-animation {
    animation: bounce 4s infinite ease-in-out;
}

.float-animation {
    animation: float 5s infinite ease-in-out;
}

@keyframes pulsate {
    0%, 100% {
        transform: scale(1) translate(-50%, -50%);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) translate(-45%, -45%);
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Bölüm Başlıkları */
.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #007bff;
}

/* Oyun Kartları */
.game-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Ekip Kartları */
.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.social-link {
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: #007bff;
    color: #FBF9FA;
}

/* İş İlanları */
.jobs-section {
    position: relative;
    overflow: hidden;
}

.job-listings {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.job-card {
    margin-bottom: 30px;
    position: relative;
}

.job-card-inner {
    background: rgba(16, 15, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.job-card-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 240, 173, 0.1), rgba(75, 85, 240, 0.1));
    z-index: -1;
    transition: all 0.4s ease;
}

.job-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 240, 173, 0.3);
}

.job-card-inner:hover:before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(14, 240, 173, 0.2), rgba(75, 85, 240, 0.2));
}

.particle-1, .particle-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.particle-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(14, 240, 173, 0.1) 0%, rgba(14, 240, 173, 0) 70%);
    top: -20px;
    right: -20px;
    animation: float 8s infinite ease-in-out;
}

.particle-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(75, 85, 240, 0.1) 0%, rgba(75, 85, 240, 0) 70%);
    bottom: -15px;
    left: 10%;
    animation: float 6s infinite ease-in-out reverse;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.job-title-wrap {
    flex: 1;
}

.job-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FBF9FA;
    letter-spacing: -0.5px;
}

.job-card:hover .job-title {
    background: linear-gradient(to right, #0ef0ad, #4b55f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FBF9FA;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.job-badge i {
    font-size: 11px;
    opacity: 0.8;
}

.job-badge.location {
    background-color: rgba(14, 240, 173, 0.1);
    color: #0ef0ad;
}

.job-card:hover .job-badge {
    background-color: rgba(255, 255, 255, 0.15);
}

.job-action {
    margin-left: 15px;
}

.job-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 10px;
}

.no-jobs {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-state i {
    font-size: 48px;
    color: #0ef0ad;
    opacity: 0.7;
    margin-bottom: 20px;
}

.empty-state h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #FBF9FA;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* Modal Stilleri */
.gradient-text {
    background: linear-gradient(to right, #0ef0ad, #4b55f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.job-detail-modal,
.job-application-modal {
    background: rgba(16, 15, 45, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-particle-1,
.modal-particle-2,
.modal-particle-3 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.modal-particle-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(14, 240, 173, 0.15) 0%, rgba(14, 240, 173, 0) 70%);
    top: -50px;
    right: -50px;
    animation: float 8s infinite ease-in-out;
}

.modal-particle-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(75, 85, 240, 0.15) 0%, rgba(75, 85, 240, 0) 70%);
    bottom: -30px;
    left: 10%;
    animation: float 6s infinite ease-in-out reverse;
}

.modal-particle-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: 30%;
    left: -20px;
    animation: float 10s infinite ease-in-out;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
}

.modal-header .modal-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-body {
    padding: 30px;
    color: #FBF9FA;
    position: relative;
    z-index: 1;
    background-color: rgba(16, 15, 45, 0.95);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
}

.custom-close {
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 0.7;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.25);
}

.cmn-btn {
    background-color: #8E54C1;
    color: #FBF9FA;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(14, 240, 173, 0.25);
}

.cmn-btn:hover {
    background-color: rgba(14, 240, 173, 0.85);
    box-shadow: 0 5px 20px rgba(14, 240, 173, 0.4);
}

.cmn-btn-sm {
    font-size: 14px;
    padding: 8px 20px;
}

.cmn-btn-outline {
    background: transparent;
    color: #FBF9FA;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.cmn-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FBF9FA;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Başvuru Formu Stilleri */
.custom-form-group {
    margin-bottom: 20px;
    position: relative;
}

.custom-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FBF9FA;
    padding: 12px 15px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(14, 240, 173, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 240, 173, 0.15);
}

.form-floating label {
    color: rgba(255, 255, 255, 0.7);
}

.text-accent {
    color: #0ef0ad;
}

.resume-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.resume-upload-area:hover {
    border-color: rgba(14, 240, 173, 0.5);
}

.custom-file-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #FBF9FA;
}

.custom-file-input-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.custom-file-input {
    padding: 45px 0 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.file-upload-icon {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: rgba(14, 240, 173, 0.8);
}

.form-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

textarea.custom-input {
    min-height: 120px;
    resize: vertical;
}

/* İş İlanı Detay Modal İçeriği */
.job-detail-content {
    position: relative;
    z-index: 1;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.7);
}

.loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(14, 240, 173, 0.3);
    border-radius: 50%;
    border-top-color: #0ef0ad;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.job-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FBF9FA;
    backdrop-filter: blur(5px);
}

.detail-badge.location {
    background-color: rgba(14, 240, 173, 0.1);
    color: #0ef0ad;
}

.detail-badge.date {
    background-color: rgba(75, 85, 240, 0.1);
    color: #4b55f0;
}

.job-section {
    position: relative;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.section-particle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 240, 173, 0.1) 0%, rgba(14, 240, 173, 0) 70%);
    top: -20px;
    left: -20px;
    z-index: 0;
}

.section-particle.right {
    left: auto;
    right: -20px;
    background: radial-gradient(circle, rgba(75, 85, 240, 0.1) 0%, rgba(75, 85, 240, 0) 70%);
}

.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.section-content {
    color: #FBF9FA;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.requirements .req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements .req-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.requirements .req-list li i {
    color: #0ef0ad;
    position: absolute;
    left: 0;
    top: 4px;
}

/* İletişim Bölümü */
.contact-info {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

/* Form Stilleri */
.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

.btn-primary {
    background-color: #8E54C1;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Admin Panel */
.admin-sidebar {
    min-height: calc(100vh - 56px);
    background-color: #343a40;
    padding-top: 20px;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
}

.admin-sidebar .nav-link:hover {
    color: #FBF9FA;
    background-color: rgba(255, 255, 255, 0.1);
}

.admin-sidebar .nav-link.active {
    color: #FBF9FA;
    background-color: #8E54C1;
}

.dashboard-card {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
    }
}
