@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

:root {
    --pt-red: #dc2626;
    --pt-green: #16a34a;
    --pt-dark: #1e293b;
    --bg-page: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-pill: 50px;
    --radius-card: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-page);
    color: var(--pt-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    padding: 10px 30px;
    z-index: 1000;
    box-shadow: var(--shadow-float);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pt-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--pt-green);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
}

.nav-links a:hover {
    color: var(--pt-red);
}

.nav-links a.active {
    color: var(--pt-dark);
    font-weight: 800;
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-pt {
    text-align: center;
    padding-top: 160px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 0%, #dcfce7 0%, transparent 60%);
}

.hero-tag {
    display: inline-block;
    background: #fee2e2;
    color: var(--pt-red);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-pt h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--pt-dark);
}

.hero-pt h1 span {
    background: linear-gradient(135deg, var(--pt-green), #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-pt p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.casino-section {
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.casino-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 25px;
    display: grid;
    grid-template-columns: 80px 140px 1fr 180px;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--pt-green);
}

.rank-circle {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    color: #94a3b8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto;
}

.casino-card.top-1 {
    background: #fff;
    border: 2px solid var(--pt-green);
    box-shadow: 0 15px 30px rgba(22, 163, 74, 0.15);
}

.casino-card.top-1 .rank-circle {
    background: var(--pt-green);
    color: #fff;
}

.logo-wrapper img {
    width: 100%;
    border-radius: 12px;
}

.bonus-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--pt-dark);
}

.bonus-info p {
    font-size: 0.95rem;
    color: #64748b;
}

.tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    color: #475569;
    font-weight: 600;
}

.play-btn {
    background: var(--pt-red);
    color: #fff;
    text-align: center;
    padding: 14px 0;
    border-radius: 14px;
    font-weight: 700;
    display: block;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.play-btn:hover {
    background: #b91c1c;
    transform: scale(1.03);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--pt-dark);
}

.info-box p {
    color: #64748b;
    font-size: 0.95rem;
}

.bottom-warning {
    background: var(--pt-dark);
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    color: #cbd5e1;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.regulator-logos img {
    height: 40px;
    margin: 0 15px;
    opacity: 0.8;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 16px;
    text-align: left;
}

.disclaimer-box h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-box h3::before {
    content: "🔞";
    font-size: 1.5rem;
}

.disclaimer-box p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 10px;
}

.disclaimer-box a {
    color: #e2e8f0;
    text-decoration: underline;
}

.disclaimer-box a:hover {
    color: var(--pt-red);
}

.long-content-wrapper {
    max-width: 800px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.article-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.article-card h2 {
    font-size: 1.8rem;
    color: var(--pt-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--pt-green);
}

.article-card h3 {
    font-size: 1.4rem;
    color: var(--pt-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-card p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

.article-card ul {
    list-style: none;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 20px 30px;
    border-radius: 12px;
}

.article-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #475569;
}

.article-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pt-green);
    font-weight: bold;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    max-width: 380px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--pt-green);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-btn {
    background: var(--pt-dark);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
}

.cookie-btn:hover {
    background: var(--pt-green);
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.steps-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
    border-color: var(--pt-green);
}

.step-number-bg {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: #f1f5f9;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: inline-block;
    background: #f0fdf4;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: var(--pt-green);
}

.step-card h4 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--pt-dark);
}

.step-card p {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.age-gate-overlay button:hover {
    transform: translateY(-2px);
    filter: brightness(110%);
    transition: 0.2s;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
    border-color: var(--pt-green);
}

.game-img-box {
    height: 160px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.game-img-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.game-content {
    padding: 25px;
}

.game-content h3 {
    color: var(--pt-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.game-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.game-tag {
    display: inline-block;
    background: #dcfce7;
    color: var(--pt-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.contact-section {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.contact-card h2 {
    color: var(--pt-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--pt-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.form-input:focus {
    background: #fff;
    border-color: var(--pt-green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.btn-submit {
    background: var(--pt-dark);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--pt-green);
    transform: translateY(-2px);
}

.contact-info-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    border-color: var(--pt-green);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.contact-info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--pt-dark);
}

.contact-info-box a {
    color: var(--pt-red);
    font-weight: 600;
}

.support-note {
    background: #fff1f2;
    border: 1px dashed #f43f5e;
    padding: 20px;
    border-radius: 16px;
    color: #9f1239;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hero-pt {
        padding-top: 140px;
    }

    .hero-pt h1 {
        font-size: 2.2rem;
    }

    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .logo-wrapper {
        max-width: 140px;
        margin: 0 auto;
    }

    .rank-circle {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .tags {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow-float);
        margin-top: 10px;
    }

    .article-card {
        padding: 25px;
    }

    .article-card p {
        text-align: left;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: auto;
        max-width: none;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}