/* Çekilişler Sayfası Stilleri */

/* Filtreler ve Arama Bölümü */
.cekilis-filters-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1280px) {
    .cekilis-filters-wrapper {
        flex-direction: row;
    }
}

.cekilis-tabs-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    overflow-x: auto;
    background-color: rgb(17, 17, 17);
    border-radius: 0.75rem;
    border: 1px solid rgb(33, 33, 33);
    padding: 0.25rem;
}

@media (min-width: 1024px) {
    .cekilis-tabs-container {
        width: auto;
    }
}

.cekilis-tab {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.125rem;
}

.cekilis-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cekilis-tab-active {
    background-color: #e39214;
    color: #ffffff;
}

.cekilis-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    width: 100%;
}

@media (min-width: 1280px) {
    .cekilis-actions-wrapper {
        width: auto;
    }
}

.cekilis-action-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 0.5rem;
    position: relative;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: rgb(17, 17, 17);
    border: 1px solid rgb(33, 33, 33);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    width: auto;
}

.cekilis-action-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.cekilis-action-button-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1rem;
}

.cekilis-sort-wrapper {
    position: relative;
    flex: 1;
}

@media (min-width: 1280px) {
    .cekilis-sort-wrapper {
        flex: initial;
    }
}

.cekilis-sort-button {
    width: 100%;
}

@media (min-width: 1280px) {
    .cekilis-sort-button {
        width: auto;
    }
}

.cekilis-sort-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    width: 10rem;
    background-color: #1e293b;
    border: 1px solid rgb(33, 33, 33);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
    z-index: 20;
}

.cekilis-sort-button:focus ~ .cekilis-sort-dropdown,
.cekilis-sort-dropdown:active {
    display: block;
}

.cekilis-sort-dropdown-content {
    display: flex;
    flex-direction: column;
}

.cekilis-sort-dropdown-item {
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: none;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.cekilis-sort-dropdown-item:hover {
    background-color: #334155;
}

.cekilis-sort-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.cekilis-sort-checkbox-checked {
    background-color: #e39214;
    border-color: #e39214;
}

.cekilis-sort-check-icon {
    width: 0.75rem;
    height: 0.75rem;
    color: #ffffff;
}

/* Filtre Tag'leri ve Sonuç */
.cekilis-filters-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .cekilis-filters-info {
        flex-direction: row;
        align-items: center;
    }
}

.cekilis-filter-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    overflow-x: auto;
}

@media (min-width: 1024px) {
    .cekilis-filter-tags {
        width: auto;
    }
}

.cekilis-filter-tag {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #e2e8f0;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    border: 1px solid #475569;
    border-radius: 9999px;
    white-space: nowrap;
    transition: all 0.3s;
    font-size: 0.75rem;
    font-weight: 500;
}

.cekilis-filter-tag:hover {
    color: #ffffff;
    border-color: #cbd5e1;
}

.cekilis-filter-tag-active {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
    background-color: #e39214;
}

.cekilis-results-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-left: auto;
    width: 100%;
}

@media (min-width: 1024px) {
    .cekilis-results-info {
        width: auto;
        margin-left: auto;
    }
}

.cekilis-results-count {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 0;
}

.cekilis-results-separator {
    color: #e2e8f0;
}

.cekilis-clear-filters {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e39214;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.cekilis-clear-filters:hover {
    color: #c47f10;
}

/* Çekiliş Kartları Grid */
.cekilis-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media (min-width: 640px) {
    .cekilis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .cekilis-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Etkinlik filtreleme animasyonları */
.cekilis-grid.events-loading {
    position: relative;
}

.cekilis-grid.events-fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.cekilis-grid.events-fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cekilis-card-link {
    animation: fadeInScale 0.4s ease-out;
    animation-fill-mode: both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animation için */
.cekilis-grid .cekilis-card-link:nth-child(1) {
    animation-delay: 0.05s;
}

.cekilis-grid .cekilis-card-link:nth-child(2) {
    animation-delay: 0.1s;
}

.cekilis-grid .cekilis-card-link:nth-child(3) {
    animation-delay: 0.15s;
}

.cekilis-grid .cekilis-card-link:nth-child(4) {
    animation-delay: 0.2s;
}

.cekilis-grid .cekilis-card-link:nth-child(5) {
    animation-delay: 0.25s;
}

.cekilis-grid .cekilis-card-link:nth-child(6) {
    animation-delay: 0.3s;
}

.cekilis-grid .cekilis-card-link:nth-child(n+7) {
    animation-delay: 0.35s;
}

/* Empty ve Error durumları */
.events-empty,
.events-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.events-empty p,
.events-error p {
    margin: 0;
    font-size: 1rem;
}

.cekilis-card-link {
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.cekilis-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(33, 33, 33);
    background-color: rgb(17, 17, 17);
    background-image: url('/assets/images/raffle-hero_bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.cekilis-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgb(33, 33, 33);
}

.cekilis-card-indicator {
    position: absolute;
    top: -0.25rem;
    left: 2.5rem;
    width: 6rem;
    height: 0.5rem;
    background-color: #475569;
    z-index: 10;
    border-radius: 9999px;
    background-color: #e39214;
    box-shadow: 0px 0px 80px 10px rgba(250, 30, 78, 0.8);
}

.cekilis-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cekilis-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgb(33, 33, 33);
    min-width: 128px;
}

.cekilis-card-logo-image {
    height: 2rem;
    object-fit: contain;
}

.cekilis-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.cekilis-card-prize {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.cekilis-card-prize-label {
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

.cekilis-card-prize-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    text-decoration: none;
    text-shadow: rgba(34, 197, 94, 0.16) 0px 4px 24px;
    margin: 0;
}

.cekilis-card-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cekilis-card-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-left: 0.5rem;
}

.cekilis-card-stat svg {
    color: #e2e8f0;
}

.cekilis-card-stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cekilis-card-stat-divider {
    width: 1px;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.cekilis-card-xp {
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(152, 132, 252) 0%, rgb(212, 132, 252) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.cekilis-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cekilis-card-timer {
    width: 100%;
}

.cekilis-card-timer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cekilis-card-timer-label {
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 500;
    margin: 0;
}

.cekilis-card-timer-value {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cekilis-card-timer-value svg {
    color: #e2e8f0;
}

.cekilis-card-timer-text {
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

.cekilis-card-progress {
    width: 100%;
    height: 0.25rem;
    margin-top: 0.5rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
}

.cekilis-card-progress-bar {
    position: relative;
    z-index: 10;
    height: 100%;
    background-color: #e39214;
    border-radius: 1rem;
    transition: width 0.3s ease;
}

.cekilis-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cekilis-card-visibility {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgb(33, 33, 33);
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 500;
}

.cekilis-card-visibility svg {
    width: 0.75rem;
    height: 0.75rem;
}

.cekilis-card-visibility p {
    margin: 0;
}

.cekilis-card-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 0.5rem;
    position: relative;
    outline: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    width: auto;
}

.cekilis-card-button:hover {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.cekilis-card-button span {
    display: inline-block;
}

.cekilis-card-button-icon {
    width: 1rem;
    height: 1rem;
    color: #ffffff;
}

/* Çekiliş Detay Sayfası Stilleri */

/* Breadcrumb */
.cekilis-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cekilis-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cekilis-breadcrumb-link {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s;
}

.cekilis-breadcrumb-link:hover {
    color: #ffffff;
}

.cekilis-breadcrumb-current {
    color: #e39214;
}

.cekilis-breadcrumb-item svg {
    color: #e2e8f0;
    width: 1rem;
    height: 1rem;
}

/* Hero Section */
.cekilis-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(33, 33, 33);
    background-color: rgb(17, 17, 17);
    background-image: url('../images/raffle-hero_bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    margin-bottom: 2.5rem;
}

.cekilis-hero-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgb(33, 33, 33);
    text-decoration: none;
}

.cekilis-hero-logo-image {
    height: 2rem;
    object-fit: contain;
}

.cekilis-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.cekilis-hero-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.cekilis-hero-prize {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.cekilis-hero-prize-label {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.cekilis-hero-prize-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    text-shadow: rgba(34, 197, 94, 0.16) 0px 4px 24px;
    margin: 0;
}

.cekilis-hero-stats {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1280px) {
    .cekilis-hero-stats {
        flex-direction: row;
        border-top: none;
        border-bottom: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.cekilis-hero-stat {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 1rem;
}

@media (min-width: 1280px) {
    .cekilis-hero-stat {
        flex-direction: column;
        justify-content: center;
    }
}

.cekilis-hero-stat-header {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cekilis-hero-stat-header svg {
    color: #e2e8f0;
    width: 1rem;
    height: 1rem;
}

.cekilis-hero-stat-header p {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.cekilis-hero-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cekilis-hero-stat-xp {
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(152, 132, 252) 0%, rgb(212, 132, 252) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.cekilis-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 13rem;
}

.cekilis-hero-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background-color: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.4);
}

.cekilis-hero-timer svg {
    color: #fb923c;
    width: 1rem;
    height: 1rem;
}

.cekilis-hero-timer p {
    color: #fb923c;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.cekilis-hero-timer-values {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

.cekilis-hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 9999px;
    position: relative;
    outline: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.cekilis-hero-button:hover {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.cekilis-hero-button svg {
    width: 1rem;
    height: 1rem;
    color: #ffffff;
}

.cekilis-hero-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 500;
}

.cekilis-hero-date svg {
    width: 1rem;
    height: 1rem;
    color: #e2e8f0;
}

/* Content Wrapper */
.cekilis-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cekilis-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
}

.cekilis-content-main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cekilis-content-main {
        order: 1;
    }
}

.cekilis-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cekilis-sidebar {
        width: 30%;
        min-width: 300px;
        order: 2;
    }
}

.cekilis-content-section {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(33, 33, 33);
    background-color: rgb(17, 17, 17);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cekilis-content-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(33, 33, 33);
}

.cekilis-content-section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cekilis-content-section-title-wrapper svg {
    color: #e2e8f0;
    width: 1.125rem;
    height: 1.125rem;
}

.cekilis-content-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.cekilis-content-section-subtitle {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.cekilis-content-section-body {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgb(33, 33, 33);
    color: #e2e8f0;
    font-size: 0.875rem;
    text-align: justify;
    white-space: pre-line;
}

.cekilis-date-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 1280px) {
    .cekilis-date-range {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.cekilis-date-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgb(33, 33, 33);
}

.cekilis-date-label {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.cekilis-date-value {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cekilis-date-value svg {
    color: #e39214;
    width: 1.125rem;
    height: 1.125rem;
}

.cekilis-date-value p {
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cekilis-date-connector {
    display: none;
    align-items: center;
    flex: 1;
    position: relative;
}

@media (min-width: 1280px) {
    .cekilis-date-connector {
        display: flex;
    }
}

.cekilis-date-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
}

.cekilis-date-line {
    flex: 1;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
}

.cekilis-date-connector svg {
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.1);
    width: 1.25rem;
    height: 1.25rem;
}

.cekilis-result-info {
    margin-top: 1rem;
}

.cekilis-result-label {
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
}

.cekilis-result-text {
    color: #e2e8f0;
    font-size: 0.875rem;
    margin: 0;
}

.cekilis-rules-content ul,
.cekilis-rules-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.cekilis-rules-content li {
    margin: 0.25rem 0;
    color: #e2e8f0;
}

.cekilis-rules-content p {
    margin: 0.5rem 0;
    color: #e2e8f0;
}

.cekilis-rules-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* Sidebar */
.cekilis-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cekilis-sidebar {
        width: 30%;
        min-width: 300px;
        order: 2;
    }
}

.cekilis-sidebar-section {
    margin-bottom: 1.5rem;
}

.cekilis-sidebar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cekilis-sidebar-header svg {
    color: #e2e8f0;
    width: 1rem;
    height: 1rem;
}

.cekilis-sidebar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.cekilis-sidebar-description {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
}

.cekilis-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cekilis-sidebar-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 9999px;
    position: relative;
    outline: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.cekilis-sidebar-button:hover {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.cekilis-sidebar-button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.cekilis-sidebar-button span {
    font-size: 1rem;
}

.cekilis-sidebar-divider {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 1.25rem 0;
}

.cekilis-sidebar-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.cekilis-sidebar-divider span {
    position: relative;
    display: inline-block;
    padding: 0 0.625rem;
    background-color: rgb(17, 17, 17);
    color: #e2e8f0;
    font-size: 0.875rem;
    z-index: 10;
}

.cekilis-sidebar-google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 9999px;
    background: linear-gradient(180deg, rgb(51, 65, 85) 0%, rgb(30, 41, 59) 100%);
    border: none;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: rgba(0, 0, 0, 0.32) 0px -1px 0px 0px inset, rgba(255, 255, 255, 0.06) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 4px 0px, rgba(0, 0, 0, 0.12) 0px 4px 12px -2px;
}

.cekilis-sidebar-google-button:hover {
    background: linear-gradient(180deg, rgb(71, 85, 105) 0%, rgb(51, 65, 85) 100%);
}

.cekilis-google-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

.cekilis-sidebar-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgb(33, 33, 33);
    text-align: center;
}

.cekilis-sidebar-footer a {
    color: #e2e8f0;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.cekilis-sidebar-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Help Section */
.cekilis-help {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(33, 33, 33);
    background-color: rgb(17, 17, 17);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 1024px) {
    .cekilis-help {
        flex-direction: row;
        align-items: flex-start;
        padding: 1.5rem;
    }
}

.cekilis-help-icon {
    display: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background-color: rgba(208, 0, 0, 0.1);
    color: #e39214;
}

@media (min-width: 1024px) {
    .cekilis-help-icon {
        display: block;
    }
}

.cekilis-help-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cekilis-help-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.cekilis-help-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

@media (min-width: 1024px) {
    .cekilis-help-title {
        font-size: 1.125rem;
    }
}

.cekilis-help-description {
    color: #e2e8f0;
    margin: 0 0 0.75rem 0;
}

.cekilis-help-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .cekilis-help-status {
        justify-content: flex-start;
        gap: 0.75rem;
    }
}

.cekilis-help-status-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(33, 33, 33);
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
}

.cekilis-help-status-online {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.cekilis-help-status-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background-color: #22c55e;
}

.cekilis-help-status-item p {
    margin: 0;
}

.cekilis-help-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 0.5rem;
    position: relative;
    outline: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    align-self: center;
}

@media (min-width: 1024px) {
    .cekilis-help-button {
        margin-left: auto;
    }
}

/* Çekiliş Detay Sayfası Yeni Stilleri */

/* Detail Wrapper */
.cekilis-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cekilis-detail-header-container {
    display: flex;
    height: max-content;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .cekilis-detail-header-container {
        gap: 0;
    }
}

.cekilis-detail-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cekilis-back-link {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0.5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s;
}

.cekilis-back-link:hover {
    color: rgb(255, 255, 255);
}

.cekilis-back-icon {
    width: 2rem;
    height: 2rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgb(33, 33, 33);
    color: currentColor;
}

.cekilis-back-link p {
    margin: 0;
}

.cekilis-detail-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cekilis-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cekilis-detail-title {
        font-size: 1.875rem;
    }
}

.cekilis-detail-header-right {
    display: flex;
    align-self: flex-end;
}

.cekilis-join-button-wrapper {
    position: relative;
    display: flex;
    gap: 1rem;
}

.cekilis-join-button {
    background: linear-gradient(135deg, rgb(217, 211, 211) 0%, rgb(243, 243, 243) 100%);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cekilis-join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.cekilis-join-button-text {
    pointer-events: none;
    margin: 0;
}

/* Stats Grid */
.cekilis-stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .cekilis-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cekilis-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cekilis-stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: rgb(17, 17, 17);
}

.cekilis-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgb(33, 33, 33);
    color: #ffffff;
}

.cekilis-stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.cekilis-stat-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cekilis-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.cekilis-stat-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
}

/* Rules Card */
.cekilis-rules-card {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    background-color: rgb(17, 17, 17);
    border: 1px solid rgba(33, 33, 33, 0.8);
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cekilis-rules-card:hover {
    border-color: rgb(33, 33, 33);
}

.cekilis-rules-participants {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.cekilis-rules-card-inner {
    padding: 0;
    height: 100%;
    width: 100%;
}

.cekilis-rules-logo {
    display: flex;
    justify-content: center;
    padding: 1rem;
    order: 1;
}

@media (min-width: 768px) {
    .cekilis-rules-logo {
        order: 2;
        justify-content: flex-start;
    }
}

.cekilis-rules-logo-image {
    width: 160px;
    height: 80px;
    object-fit: contain;
}

.cekilis-rules-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.cekilis-rules-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    max-width: fit-content;
}

.cekilis-rules-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0;
    transform: translateY(-0.5rem);
}

.cekilis-rules-list {
    display: flex;
    list-style: disc inside;
    padding: 0;
    margin: 0;
    flex-direction: column;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .cekilis-rules-list {
        gap: 0.375rem;
    }
}

.cekilis-rules-item span {
    flex: 1;
}

.cekilis-rules-item {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.cekilis-rules-check-icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}

.cekilis-rules-example-title {
    list-style: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* Winners Card */
.cekilis-winners-card {
    position: relative;
    width: 100%;
    min-width: 300px;
    padding: 0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    background-color: rgb(17, 17, 17);
    border: 1px solid rgba(33, 33, 33, 0.8);
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cekilis-winners-card:hover {
    border-color: rgb(33, 33, 33);
}

.cekilis-winners-card-inner {
    padding: 0;
    height: 100%;
    width: 100%;
}

.cekilis-winners-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(17, 17, 17, 0.2) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.cekilis-winners-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(17, 17, 17, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.cekilis-winners-content {
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
    height: 400px;
    max-height: 400px;
    min-height: 400px;
}

.cekilis-winners-content .cekilis-winners-title {
    flex-shrink: 0;
}

.cekilis-winners-content .cekilis-winners-text {
    flex-shrink: 0;
}

.cekilis-winners-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

@media (min-width: 768px) {
    .cekilis-winners-title {
        font-size: 1.25rem;
    }
}

.cekilis-winners-list {
    margin-top: 16px;
}

.cekilis-winners-list {
    margin-top: 16px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    padding-right: 8px;
}

.cekilis-winners-list::-webkit-scrollbar {
    width: 6px;
}

.cekilis-winners-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.cekilis-winners-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.cekilis-winners-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.cekilis-winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cekilis-winner-item:last-child {
    border-bottom: none;
}

.cekilis-winner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
}

.cekilis-winner-name {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.cekilis-winners-text {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Prizes Card */
.cekilis-prizes-card {
    padding: 0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    background-color: rgb(17, 17, 17);
    border: 1px solid rgba(33, 33, 33, 0.8);
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cekilis-prizes-card:hover {
    border-color: rgb(33, 33, 33);
}

.cekilis-prizes-card-inner {
    padding: 0;
    height: 100%;
    width: 100%;
}

.cekilis-prizes-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.cekilis-prizes-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    max-width: fit-content;
}

.cekilis-prizes-list {
    display: flex;
    list-style: disc inside;
    padding: 0;
    margin: 0;
    flex-direction: column;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .cekilis-prizes-list {
        gap: 0.375rem;
    }
}

.cekilis-prizes-item {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.cekilis-prizes-item span {
    flex: 1;
}

.cekilis-prizes-check-icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}

.cekilis-help-button:hover {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.cekilis-help-button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.cekilis-help-button span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Diğer Çekilişler */
.cekilis-other-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cekilis-other-header svg {
    color: #e2e8f0;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.25rem;
    background-color: rgb(30, 41, 59);
    border: 1px solid rgb(33, 33, 33);
    border-radius: 0.375rem;
}

.cekilis-other-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

@media (min-width: 768px) {
    .cekilis-other-title {
        font-size: 1.5rem;
    }
}

