@font-face {
    font-family: "smiley";
    src: url(../font/Outfit-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "smiley";
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #22252A;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { width: 100%; object-fit: cover; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { outline: 0; border: 0; background: transparent; cursor: pointer; }

/* header */
header {
    background-color: #2b293a;
    padding: 8px 0;
}

.header-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-center .logo {
    width: 160px;
}

/* page content */
.policy-wrap {
    flex: 1;
    max-width: 860px;
    margin: 40px auto;
    padding: 0 20px 60px;
}

.policy-wrap .page-title {
    font-size: 28px;
    font-weight: 700;
    color: #fda238;
    margin-bottom: 6px;
}

.policy-wrap .page-updated {
    font-size: 13px;
    color: #666;
    margin-bottom: 32px;
}

.policy-wrap h2 {
    font-size: 18px;
    color: #fff;
    margin: 28px 0 10px;
}

.policy-wrap h3 {
    font-size: 15px;
    color: #ddd;
    margin: 20px 0 8px;
}

.policy-wrap p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-wrap ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 20px 20px;
}

.policy-wrap ul li {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    list-style: disc;
}

.policy-wrap a {
    color: #fda238;
}

.policy-wrap strong {
    color: #ddd;
}

/* about page extras */
.about-hero {
    background: linear-gradient(to bottom, #433f5a 0%, #1d1828 100%);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 36px;
    color: #fda238;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 15px;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.about-card {
    background: #1a1826;
    border: 1px solid #2b293a;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
}

.about-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.about-card h3 {
    font-size: 15px;
    color: #fda238;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* contact page extras */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.contact-info h2 {
    font-size: 20px;
    color: #fda238;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info .info-item .info-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info .info-item div {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

.contact-info .info-item strong {
    display: block;
    color: #ddd;
    margin-bottom: 2px;
}

.contact-form {
    background: #1a1826;
    border: 1px solid #2b293a;
    border-radius: 8px;
    padding: 28px 24px;
}

.contact-form h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #22252A;
    border: 1px solid #2b293a;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    font-family: "smiley";
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #fda238;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: #22252A;
}

.btn-submit {
    width: 100%;
    background: #fda238;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: "smiley";
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.85;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    color: #4caf50;
    font-size: 15px;
}

/* cookie page extras */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 13px;
}

.cookie-table th {
    background: #1a1826;
    color: #fda238;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #2b293a;
}

.cookie-table td {
    padding: 10px 14px;
    border: 1px solid #1e1c2a;
    color: #999;
    vertical-align: top;
}

.cookie-table tr:nth-child(even) td {
    background: #1a1826;
}

/* footer */
footer {
    background-color: #0d0b14;
    border-top: 1px solid #2b293a;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 180px;
}

.footer-brand img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

.footer-col {
    min-width: 130px;
}

.footer-col h5 {
    font-size: 13px;
    color: #fda238;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 16px 20px 0;
    border-top: 1px solid #1e1c2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #555;
}

.footer-bottom a {
    color: #666;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: #fff; }

/* cookie banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1826;
    border-top: 1px solid #2b293a;
    padding: 14px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 99999;
    font-size: 13px;
    color: #ccc;
}

#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner a { color: #fda238; text-decoration: underline; }

#cookie-banner .cookie-accept {
    background: #fda238;
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    font-family: "smiley";
}

#cookie-banner .cookie-decline {
    background: transparent;
    color: #888;
    border: 1px solid #444;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    font-family: "smiley";
}

@media (max-width: 799px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cookie-table { font-size: 12px; }
}
