@charset "UTF-8";

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, .container, .main, .about-section, .footer, .about-container, .footer-container, .games-wrap, .header {
    background: #1c1f2c !important;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stili */
.header {
    background: #1c1f2c;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: #1c1f2c;
}

.logo img {
    height: 50px;
    width: auto;
}

.auth {
    display: flex;
    gap: 15px;
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-1 {
    background: transparent;
    color: #ffcd36;
    border: 2px solid #ffcd36;
}

.btn-1:hover {
    background: #ffcd36;
    color: #1c1f2c;
}

.btn-2 {
    background: #ffcd36;
    color: #1c1f2c;
    border: none;
}

.btn-2:hover {
    filter: brightness(0.95);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Main Content */
.main {
    margin-top: 80px;
    padding: 40px 0;
}

/* Banner Stili */
.banner {
    background: linear-gradient(135deg, #1c1f2c, #1c1f2c);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 380px;
    padding: 80px 0 80px 80px;
    position: relative;
    overflow: hidden;
}
.banner::before {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: url('../assets/coins.png') center center/cover no-repeat;
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
}
.banner > * {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 28px;
    text-align: left;
}

.banner p {
    font-size: 1.18em;
    max-width: 800px;
    margin-bottom: 38px;
    text-align: left;
}

.banner__btn .btn {
    background: #ffcd36;
    color: #1c1f2c;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.25em;
    padding: 18px 48px;
    box-shadow: 0 0 18px rgba(255, 205, 54, 0.5);
    border: none;
    transition: filter 0.2s;
}
.banner__btn .btn:hover {
    filter: brightness(0.95);
}

/* Games Wrap */
.games-wrap {
    padding: 60px 0;
}

.games-wrap h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    font-size: 2.2em;
    font-weight: 800;
    position: relative;
    display: block;
    border-bottom: 4px solid #ffcd36;
    padding-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    justify-items: center;
    padding: 20px 0 0 0;
}

.card {
    background: rgba(28, 31, 44, 0.95);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    padding: 36px 32px 36px 32px;
    min-width: 320px;
    max-width: 370px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #ffcd36;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px 0 rgba(0,0,0,0.35);
}

.card__title {
    font-size: 1.35em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    z-index: 2;
}

.card__subtitle {
    color: #fff;
    font-size: 1.08em;
    font-weight: 400;
    z-index: 2;
}

.card-bg-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    opacity: 0.38;
    z-index: 1;
    pointer-events: none;
}

/* About Section */
.about-section {
    background: #1c1f2c;
    padding: 60px 0;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    text-align: center;
    margin-bottom: 30px;
    color: #ffcd36;
    font-weight: 800;
    font-size: 2.3em;
}

.about-desc {
    text-align: center;
    margin-bottom: 40px;
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin-bottom: 40px;
}

.about-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.about-list li:before {
    content: "•";
    color: #816AA6;
    position: absolute;
    left: 0;
}

.about-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.about-table th,
.about-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.about-table th {
    background: #f9f9f9;
    color: #333;
}

/* Footer Stili */
.footer {
    background: #1c1f2c;
    padding: 40px 0;
    margin-top: 60px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255, 205, 54, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 1100px;
    padding: 0 12px;
}

.payment {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 8px;
    padding: 4px 0;
    min-width: 60px;
    min-height: 32px;
    transition: transform 0.2s ease;
}

.payment:hover {
    transform: scale(1.05);
}

.payment svg {
    display: block;
    height: 40px;
    width: auto;
    max-width: 120px;
}

.footer-copyright {
    text-align: center;
    color: #ffcd36;
    margin-top: 30px;
    font-size: 0.9em;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .banner h1 {
        font-size: 2em;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .card {
        min-width: 260px;
        max-width: 320px;
        padding: 28px 18px 28px 18px;
    }
    .card-bg-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 60px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .main {
        margin-top: 60px;
    }
    
    .banner {
        padding: 40px 0;
    }
    
    .banner h1 {
        font-size: 1.8em;
    }
    
    .btn {
        padding: 8px 20px;
    }
    
    .payments {
        gap: 30px;
    }
    
    .payment svg {
        height: 32px;
        max-width: 90px;
    }
}

@media (max-width: 600px) {
    .header .container {
        height: 50px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .auth {
        gap: 10px;
    }
    
    .btn {
        padding: 6px 15px;
        font-size: 0.9em;
    }
    
    .banner h1 {
        font-size: 1.5em;
    }
    
    .banner p {
        font-size: 1em;
    }
    
    .cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .card {
        min-width: 0;
        max-width: 98vw;
        width: 100%;
        padding: 22px 10px 22px 16px;
    }
    
    .card-bg-icon {
        width: 60px;
        height: 60px;
    }
    
    .payments {
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .payment {
        min-width: 48px;
        min-height: 24px;
        padding: 2px 0;
    }
    
    .payment svg {
        height: 22px;
        max-width: 48px;
    }
    
    .about-table {
        display: block;
        overflow-x: auto;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-copyright {
        font-size: 0.8em;
    }
    
    .banner {
        background-size: 120vw auto;
        min-height: 140px;
    }
    
    .section-divider {
        width: 80px;
        margin: 32px auto;
    }
}

@media (max-width: 900px) {
    .banner {
        min-height: 220px;
        padding: 32px 6vw;
        align-items: center;
    }
    .banner h1, .banner p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 700px) {
    .banner__text {
        padding: 18px 8vw 18px 8vw;
        max-width: 98vw;
    }
    .banner__text::before {
        width: 90px;
        height: 60px;
    }
}

.btn-1, .btn-2 {
    color: #b7c3d3;
}

.modern-table-wrap {
    background: #232a34;
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(255,205,54,0.18);
    padding: 0 0 24px 0;
    margin: 48px auto 0 auto;
    overflow-x: auto;
    max-width: 1100px;
    border: 2px solid #ffcd36;
}
.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 22px;
    overflow: hidden;
    min-width: 700px;
}
.modern-table thead th {
    background: #ffcd36;
    color: #1c1f2c;
    font-size: 1.35em;
    font-weight: 800;
    padding: 28px 0;
    text-align: center;
    border-bottom: 2px solid #ffcd36;
}
.modern-table th, .modern-table td {
    padding: 22px 32px;
    text-align: center;
    font-size: 1.13em;
}
.modern-table tbody tr {
    background: #232a34;
    color: #fff;
    border-bottom: 1px solid #ffcd36;
}
.modern-table tbody tr:last-child td {
    border-bottom: none;
}
.modern-table td {
    border-right: 1px solid #ffcd36;
}
.modern-table td:last-child {
    border-right: none;
}
@media (max-width: 900px) {
    .modern-table {
        min-width: 400px;
    }
    .modern-table th, .modern-table td {
        padding: 14px 8px;
        font-size: 1em;
    }
}
@media (max-width: 600px) {
    .modern-table-wrap {
        padding: 0 0 8px 0;
        border-radius: 12px;
        max-width: 99vw;
    }
    .modern-table {
        min-width: 320px;
        border-radius: 12px;
    }
    .modern-table thead th {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        padding: 10px 0;
        font-size: 1em;
    }
    .modern-table th, .modern-table td {
        font-size: 0.95em;
        padding: 8px 4px;
    }
}

.section-divider {
    height: 4px;
    width: 180px;
    background: #ffcd36;
    border-radius: 8px;
    margin: 48px auto 48px auto;
    display: block;
}
@media (max-width: 600px) {
    .section-divider {
        width: 80px;
        margin: 32px auto;
    }
} 