/*
Theme Name: My Theme
Author: Dmitriy
Description: Дефолтная тема WordPress
Version: 1.0
*/

        /* Reset ve Temel Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0d1520;
            --secondary: #d4af37;
            --accent: #c62828;
            --dark: #1a2a3a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #0d1520 0%, #1a2a3a 50%, #0d1520 100%);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--secondary), #f0c040);
            color: var(--dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
            background: linear-gradient(135deg, #f0c040, var(--secondary));
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Header */
        header {
            background: rgba(13, 21, 32, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

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

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

        .logo img {
            height: 50px;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(198, 40, 40, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(13, 21, 32, 0.8) 0%, transparent 50%);
            animation: float 6s ease-in-out infinite;
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--secondary), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .current-address {
            text-align: center;
            margin: 2rem 0;
            font-weight: 700;
        }

        .current-address a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 1.3rem;
            padding: 15px 30px;
            border: 2px solid var(--secondary);
            border-radius: 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .current-address a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 2rem 0;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 3rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

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

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .feature-card h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        /* Jackpot Section */
        .jackpot-section {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 30px;
            padding: 60px 40px;
            margin: 4rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .jackpot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 3rem;
        }

        .jackpot-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .jackpot-item:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .jackpot-name {
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .jackpot-amount {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 1rem 0;
        }

        /* Games Section */
        .games-showcase {
            background: linear-gradient(135deg, rgba(26, 42, 58, 0.8), rgba(13, 21, 32, 0.9));
            border-radius: 30px;
            padding: 60px 40px;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .games-showcase::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

        .games-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 3rem;
        }

        .game-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .game-item:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .game-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .game-item h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        /* Winners Section */
        .winners-section {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 30px;
            padding: 60px 40px;
            margin: 4rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .winners-list {
            max-height: 400px;
            overflow-y: auto;
            margin-top: 2rem;
        }

        .winner-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .winner-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .winner-amount {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* License Section */
        .license-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 40px;
            margin: 4rem 0;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .license-logo img {
            height: 80px;
            margin-bottom: 2rem;
        }

        .license-info {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
        }

        .license-info a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 700;
        }

        .license-info a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: rgba(5, 10, 15, 0.95);
            padding: 60px 0 30px;
            margin-top: 4rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

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

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-logo img {
            height: 40px;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin: 1.5rem 0;
            justify-content: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .rating-badges {
            display: flex;
            gap: 20px;
            margin: 1.5rem 0;
            justify-content: center;
            flex-wrap: wrap;
        }

        .rating-badge img {
            height: 40px !important;
        }

        .warning {
            background: rgba(198, 40, 40, 0.1);
            color: #ff6b6b;
            padding: 20px;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid rgba(198, 40, 40, 0.3);
        }

        /* FAQ Section */
        .faq-section {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 30px;
            padding: 60px 40px;
            margin: 4rem 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .faq-answer {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Mobile Auth Buttons */
        .mobile-auth-buttons {
            display: none;
            flex-direction: column;
            gap: 10px;
            padding: 20px;
            background: rgba(13, 21, 32, 0.98);
        }

        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 21, 32, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            .nav-menu.active {
                display: flex;
            }

            .auth-buttons {
                display: none;
            }

            .mobile-auth-buttons {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
                padding: 0 15px;
                line-height: 1.3;
            }
            
            .hero p {
                font-size: 1.1rem;
                padding: 0 10px;
            }
            
            .hero-content {
                padding: 0 15px;
            }
            
            .current-address a {
                font-size: 1.1rem;
                padding: 12px 20px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                justify-content: center;
                width: 100%;
                max-width: 300px;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
                padding: 0 10px;
                line-height: 1.2;
            }
            
            .hero p {
                font-size: 1rem;
                padding: 0 5px;
            }
            
            .hero-content {
                padding: 0 10px;
            }
            
            .current-address a {
                font-size: 1rem;
                padding: 10px 15px;
            }

            section {
                padding: 60px 0;
            }

            .games-showcase,
            .jackpot-section,
            .winners-section,
            .faq-section {
                padding: 40px 20px;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 1.7rem;
            }
            
            .stat-item {
                padding: 15px;
            }
        }