/* 7Slots Casino - Turkish Landing Page */
/* Color Scheme: Dark Blue + Neon Green */

:root {
    /* Dark blue tones */
    --primary-dark: #1a2332;
    --secondary-dark: #2a3544;
    --medium-dark: #3a4556;
    
    /* Neon green accents */
    --primary-green: #7FFF00;
    --light-green: #90EE90;
    --dark-green: #6FEE00;
    
    /* Blue for buttons */
    --primary-blue: #4169E1;
    --dark-blue: #3159D1;
    --light-blue: #5179F1;
    
    /* Text colors */
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    --gray: #B0B0B0;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #1a2332, #2a3544, #3a4556);
    --gradient-green: linear-gradient(135deg, #7FFF00, #90EE90);
    --gradient-blue: linear-gradient(135deg, #4169E1, #5179F1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: var(--secondary-dark);
    border-bottom: 2px solid var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--primary-green);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 255, 0, 0.4);
}

.btn-secondary {
    background: var(--gradient-blue);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--primary-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* Hero */
.hero {
    background: var(--gradient-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(127, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--secondary-dark);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(127, 255, 0, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.feature-title {
    font-size: 1.375rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.game-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(127, 255, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(127, 255, 0, 0.3);
}

.game-thumbnail {
    width: 100%;
    padding-top: 60%;
    background: var(--medium-dark);
    position: relative;
    overflow: hidden;
}

.game-info {
    padding: 1.25rem;
}

.game-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.game-provider {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.review-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-green);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.review-author {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray);
}

.review-rating {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text {
    color: var(--light-gray);
    line-height: 1.7;
    font-style: italic;
}

/* Bonus Section */
.bonus-section {
    background: var(--primary-dark);
    border-top: 2px solid var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
}

.bonus-card {
    background: var(--gradient-dark);
    border: 3px solid var(--primary-green);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.bonus-amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.bonus-description {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/* Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

.info-table tr {
    border-bottom: 1px solid rgba(127, 255, 0, 0.2);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1.25rem 1.5rem;
    color: var(--white);
}

.info-table td:first-child {
    font-weight: 700;
    color: var(--primary-green);
    width: 40%;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    border-top: 2px solid var(--primary-green);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(127, 255, 0, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav, .header-buttons {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .info-table td {
        display: block;
        width: 100% !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Touch-friendly */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        padding: 0.875rem 2rem;
    }
    
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}
