/* #ff2911 */

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/fonts/glyphicons-halflings-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Digital Sans EF Medium';
    src: url('/fonts/digital_sans_ef_medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Advanced Dot Digital7';
    src: url('/fonts/advanced_dot_digital7.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    background-color: #ff2911;
    line-height: 1.6;
    color: #000;
}

h1, h2, h3, strong {
    font-family: 'Lato', Arial, sans-serif;
}

.container {
    text-align: center;
    padding: 50px;
}

.header {
    position: relative;
    margin-bottom: 30px;
}

.logo {
    width: 225px;
    height: 88px;
    margin: 0 auto;
    display: block;
}

.main-image {
    position: relative;
    width: 564px;
    height: 564px;
    max-width: 100%;
    display: block;
    margin: 20px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .9);
}

.main-image::after {
    content: 'TIMUNA';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2em;
    color: rgba(255, 255, 255, .5);
    pointer-events: none;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.buttons a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    background-color: #fff;
    font-size: 1.2em;
    transition: background-color .3s, box-shadow .3s;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .8);
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.buttons a:hover {
    background-color: #ff2911;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .8);
}

@media(min-width: 600px) {
    .buttons {
        flex-direction: row;
        justify-content: center;
    }

    .buttons a {
        max-width: none;
        margin: 10px;
    }
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.contact-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: transform .3s;
    font-family: 'Lato', sans-serif;
}

.contact-links a:hover {
    transform: scale(1.1);
}

.contact-links img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.contact-links span {
    margin-top: 5px;
    font-size: 12px;
}

.article {
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .9);
    font-family: 'Lato', sans-serif;
}

.article:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .9);
}

.article h1 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.article p {
    font-size: 1.1em;
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

@media(max-width: 768px) {
    .container {
        padding: 20px;
    }

    .logo {
        width: 150px;
        height: auto;
    }

    .main-image {
        width: auto;
        height: auto;
        max-width: 100%;
        margin-top: 10px;
    }

    h1 {
        font-size: 2em;
    }

    .article {
        margin: 20px 10px;
        padding: 10px;
    }

    .article h1 {
        font-size: 1.5em;
    }

    .article p {
        font-size: 1em;
    }
}

.article a {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
}

.article a:hover {
    text-decoration: underline;
}

.social-sharing {
    margin-top: 25px;
}

.social-sharing a {
    display: inline-block;
    margin-right: 3px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
}

.social-sharing a img {
    vertical-align: middle;
    margin-right: 3px;
}

#news {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    background-color: #ff2911;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .9);
    overflow: hidden;
}

#news marquee {
    font-size: .9em;
    text-transform: uppercase;
    padding: 0;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: .9em;
    font-family: 'Lato', sans-serif;
}

footer#footer-nav {
    background-color: #ff2911;
    color: #333;
    padding: 10px;
    font-size: .9em;
    font-family: 'Lato', sans-serif;
}

footer#footer-nav a {
    color: #055c63;
    text-decoration: none;
    margin: 0 10px;
}

footer#footer-nav a:hover {
    text-decoration: underline;
}

footer#footer-copyright {
    background-color: #ff2911;
    color: #fff;
    padding: 10px;
    font-size: .9em;
    border-top: 2px solid #000;
}

.slotgacor {
    color: #000 !important;
    text-decoration: none !important; /* Optional: remove underline */
}

.slotgacor:hover {
    text-decoration: underline !important; /* Optional: add underline on hover */
}

ul {
    list-style-type: disc; /* Tipe list bullet */
    margin: 0; /* Menghilangkan margin default dari ul */
    padding-left: 20px; /* Memberikan padding kiri untuk list item */
}

li {
    margin-bottom: 5px; /* Spasi antar item list */
    padding-left: 5px; /* Padding kiri dalam item list */
    font-family: 'Lato', Arial, sans-serif; /* Menggunakan font-family yang konsisten */
    font-size: 16px; /* Ukuran font */
    line-height: 1.5; /* Tinggi garis untuk keterbacaan */
    text-align: justify; /* Mengatur teks dalam li agar rata kiri-kanan */
}

strong {
    color: #000;
}
