/* =========================================================
   DOSTWIN WEBSITE - GLOBAL CSS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #333;
    line-height: 1.7;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.header-container {
    max-width: 1100px;
    margin: auto;
    min-height: 65px;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo img {
    width: 105px;
    height: auto;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
}

.main-menu a {
    display: block;
    padding: 9px 13px;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: .3s;
}

.main-menu a:hover,
.main-menu a.active {
    color: #fff;
    background: linear-gradient(135deg,#ff6517,#ff991a);
}


/* =========================================================
   PAGE CONTAINER
========================================================= */

.page-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.content-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 35px rgba(0,0,0,.06);
}


/* =========================================================
   PAGE TITLE
========================================================= */

.page-title {
    text-align: center;
    margin-bottom: 10px;
}

.page-title h1 {
    font-size: 34px;
    line-height: 1.25;
    color: #202020;
    font-weight: 800;
}

.page-title p {
    margin-top: 8px;
    color: #888;
    font-size: 13px;
}

.title-line {
    width: 65px;
    height: 4px;
    border-radius: 10px;
    margin: 15px auto 30px;

    background: linear-gradient(
        90deg,
        #ff6416,
        #ff9a1a
    );
}


/* =========================================================
   SECTIONS
========================================================= */

.content-section {
    margin-top: 35px;
}

.content-section:first-of-type {
    margin-top: 0;
}

.content-section h2 {
    position: relative;
    padding-left: 15px;
    margin-bottom: 14px;

    font-size: 24px;
    line-height: 1.3;

    color: #222;
}

.content-section h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: 4px;

    width: 5px;
    height: calc(100% - 8px);

    border-radius: 5px;

    background: linear-gradient(
        #ff6417,
        #ff991b
    );
}

.content-section h3 {
    font-size: 19px;
    margin: 22px 0 8px;
    color: #333;
}

.content-section p {
    color: #5d5d5d;
    margin-bottom: 14px;
}

.content-section ul,
.content-section ol {
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 7px;
    color: #555;
}


/* =========================================================
   HERO BOX
========================================================= */

.page-hero {
    padding: 35px;
    margin-bottom: 35px;

    text-align: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #20105e,
            #38218a
        );

    color: #fff;

    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    right: -70px;
    top: -70px;

    background: rgba(255,255,255,.08);
}

.page-hero h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.page-hero p {
    color: rgba(255,255,255,.85);
    max-width: 650px;
    margin: auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-area {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 150px;

    padding: 12px 22px;

    border-radius: 30px;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #ff6316,
        #ff991b
    );

    box-shadow:
        0 7px 20px rgba(255,103,20,.25);

    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn.green {
    background: linear-gradient(
        135deg,
        #32b866,
        #50cf7c
    );
}

.btn.outline {
    background: #fff;
    color: #ff6a17;
    border: 2px solid #ff6a17;
}


/* =========================================================
   INFO CARDS
========================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin: 25px 0;
}

.info-card {
    padding: 22px;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 10px;

    transition: .3s;
}

.info-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.07);
}

.info-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 10px;

    color: #fff;

    font-size: 20px;

    background: linear-gradient(
        135deg,
        #ff6416,
        #ff991b
    );
}

.info-card h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.info-card p {
    font-size: 13px;
    color: #666;
}


/* =========================================================
   REGISTER FORM
========================================================= */

.register-wrapper {
    max-width: 650px;
    margin: auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;

    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #ddd;

    background: #fafafa;

    padding: 12px 14px;

    border-radius: 7px;

    outline: none;

    font-family: inherit;

    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff761a;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(255,110,20,.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox {
    display: flex;
    gap: 8px;
    align-items: flex-start;

    font-size: 12px;
    color: #666;

    margin: 15px 0;
}

.checkbox input {
    margin-top: 5px;
}


/* =========================================================
   RESPONSIBLE GAMING
========================================================= */

.responsible-box {
    padding: 22px;

    margin: 20px 0;

    background: #fff8ee;

    border-left: 5px solid #ff7217;

    border-radius: 8px;
}

.responsible-box strong {
    color: #ef6215;
}

.warning-box {
    padding: 22px;

    background: #fff0f0;

    border-left: 5px solid #df4545;

    border-radius: 8px;
}

.green-box {
    padding: 22px;

    background: #eefbf3;

    border-left: 5px solid #35b96b;

    border-radius: 8px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-list {
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item summary {
    cursor: pointer;

    padding: 17px 20px;

    font-weight: 700;

    color: #333;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    float: right;

    color: #ff6817;

    font-size: 21px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 18px;

    color: #666;

    font-size: 14px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    padding: 22px;

    border: 1px solid #eee;

    border-radius: 10px;

    background: #fafafa;
}

.contact-card h3 {
    margin-bottom: 8px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #181818;

    padding: 35px 20px;

    text-align: center;

    color: #999;
}

.footer-inner {
    max-width: 1000px;
    margin: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    margin-bottom: 15px;
}

.footer-links a {
    color: #ddd;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ff7619;
}

.site-footer p {
    font-size: 12px;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px) {

    .header-container {
        min-height: 58px;
        padding: 8px 15px;
    }

    .site-logo img {
        width: 85px;
    }

    .main-menu {
        gap: 2px;
    }

    .main-menu a {
        padding: 7px 8px;
        font-size: 11px;
    }

    .page-container {
        margin: 15px auto;
        padding: 0 10px;
    }

    .content-card {
        padding: 25px 18px;
    }

    .page-title h1 {
        font-size: 27px;
    }

    .page-hero {
        padding: 28px 18px;
    }

    .page-hero h2 {
        font-size: 24px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .form-row,
    .contact-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:480px) {

    .main-menu li:nth-child(n+4) {
        display: none;
    }

    .content-card {
        padding: 22px 15px;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 21px;
    }

    .btn {
        width: 100%;
    }

}