@font-face {
    font-family: 'Eordeoghlakat';
    src: url('../fonts/Eordeoghlakat.woff2');
}


:root {
    --rf-body: #fff;
    --rf-header: #fff;
    --rf-subtitle: #ae8b2b;
    --rf-title: #181818;
    --rf-text: #85847d;
    --rf-button-primary: #ae8b2b;
    --rf-button-secondary: #181818;
    --rf-border: #821e2c;
    --rf-footer: #831E2c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--rf-text);
    background: url('../content/lake.jpg') center bottom no-repeat;
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.52;
}

.rf-block {
    max-width: 1500px;
    width: 99%;
    margin: 20px auto;
    position: relative;
    background: #fff;
}

h1,
h2,
h3 {
    line-height: 1.25;
}

.rf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rf-header {
    background-color: var(--rf-header);
    padding: 10px 0;
    border-bottom: 2px solid var(--rf-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.rf-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rf-logo img {
    max-height: 50px;
}

.rf-nav {
    display: flex;
    align-items: center;
}

.rf-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.rf-nav-link {
    text-decoration: none;
    color: var(--rf-title);
    font-weight: 500;
    transition: color 0.3s;
}

.rf-nav-link:hover {
    color: var(--rf-subtitle);
}

.rf-buttons {
    display: flex;
    gap: 15px;
    margin-left: 30px;
}

.rf-btn {
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.rf-btn-primary {
    background-color: var(--rf-button-primary);
    color: white;
}

.rf-btn-primary:hover {
    background-color: #8a6d22;
}

.rf-btn-secondary {
    background-color: var(--rf-button-secondary);
    color: white;
}

.rf-btn-secondary:hover {
    background-color: #000;
}

.rf-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--rf-title);
    cursor: pointer;
}

.rf-banner {
    background-image: url('../content/bg1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

.rf-banner-content {
    max-width: 546px;
}

.rf-subtitle {
    font-family: 'Shadows Into Light', cursive;
    color: var(--rf-subtitle);
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.rf-title {
    font-family: 'Eordeoghlakat', serif;
    color: var(--rf-title);
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 500;
}

.rf-banner .rf-title {
    color: var(--rf-title);
}

.rf-banner .rf-text {
    color: var(--rf-title);
}

.rf-text {
    margin-bottom: 30px;
    font-size: 16px;
}

.rf-banner-buttons {
    display: flex;
    gap: 20px;
}

.rf-section {
    padding: 80px 0;
    border-bottom: 2px solid var(--rf-border);
}

.rf-about {
    display: flex;
    gap: 50px;
    align-items: center;
}

.rf-about-image {
    flex: 1;
}

.rf-about-image p {
    margin-bottom: 12px;
}

.rf-about-image p i {
    font-size: 12px;
}

.rf-about-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rf-about-content {
    flex: 1;
}

.rf-list {
    list-style: none;
    margin-top: 20px;
}

.rf-list-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.rf-list-item:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--rf-subtitle);
    position: absolute;
    left: 0;
}

.rf-winners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.rf-rules-link {
    color: var(--rf-subtitle);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.rf-rules-link:hover {
    color: var(--rf-border);
}

.rf-winners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.rf-winner-card {
    border: 2px solid var(--rf-border);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.rf-winner-date,
.rf-winner-name,
.rf-winner-ticket,
.rf-winner-prize {
    margin-bottom: 15px;
}

.rf-winner-label {
    display: block;
    font-weight: 600;
    color: var(--rf-title);
    margin-bottom: 5px;
}

.rf-winner-value {
    color: var(--rf-subtitle);
    font-weight: 500;
}

.rf-footer {
    background: url('../content/footer.png') center bottom no-repeat;
    background-size: cover;
    color: white;
    padding: 60px 0 20px;
}

.rf-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.rf-footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.rf-footer-logo p {
    font-size: 12px;
}

.rf-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rf-footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.rf-footer-link:hover {
    color: var(--rf-subtitle);
}

.rf-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rf-contact-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.rf-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rf-contact-item span {
    line-height: 1.3;
}

.rf-support {
    margin-top: 15px;
}

.rf-support-title {
    margin-bottom: 20px;
    font-size: 14px;
}

.rf-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}


.rf-cta {
    margin: 50px 0 0 0;
    color: #000;
}

.rf-cta h3 {
    font-family: 'Eordeoghlakat', serif;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}


.rf-partner {
    height: 40px;
}

.rf-partner img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.rf-partner.cust img {
    filter: none;

}

.rf-license {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.rf-copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

.rf-breadcrumbs {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.rf-breadcrumb-link {
    color: var(--rf-subtitle);
    text-decoration: none;
    transition: color 0.3s;
}

.rf-breadcrumb-link:hover {
    color: var(--rf-border);
}

.rf-breadcrumb-separator {
    margin: 0 10px;
    color: var(--rf-text);
}

.rf-breadcrumb-current {
    color: var(--rf-title);
    font-weight: 500;
}

.rf-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.rf-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.rf-contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rf-contact-item-large {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.rf-contact-item-large i {
    font-size: 24px;
    color: var(--rf-subtitle);
    margin-top: 5px;
    min-width: 30px;
}

.rf-contact-title {
    font-family: 'Poppins', sans-serif;
    color: var(--rf-title);
    font-size: 18px;
    margin-bottom: 10px;
}

.rf-contact-form-container {
    position: relative;
}

.rf-form-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--rf-body);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    border: 2px solid var(--rf-border);
    border-radius: 8px;
    z-index: 10;
}

.rf-form-message i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.rf-form-message h3 {
    color: var(--rf-title);
    margin-bottom: 10px;
    font-size: 24px;
}

.rf-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rf-form-group {
    display: flex;
    flex-direction: column;
}

.rf-form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--rf-title);
}

.rf-form-group input,
.rf-form-group select,
.rf-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.rf-form-group input:focus,
.rf-form-group select:focus,
.rf-form-group textarea:focus {
    outline: none;
    border-color: var(--rf-subtitle);
}

.rf-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2385847d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.rf-form-submit {
    align-self: flex-start;
    min-width: 180px;
    position: relative;
}

.rf-btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .rf-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rf-form-message {
        position: relative;
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .rf-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rf-contact-item-large {
        flex-direction: column;
        gap: 10px;
    }

    .rf-contact-item-large i {
        margin-top: 0;
    }
}

.rf-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.rf-donation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rf-donation-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    border: 2px solid var(--rf-border);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rf-donation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rf-donation-image {
    flex-shrink: 0;
    width: 150px;
    line-height: 0;
}

.rf-donation-image a {
    display: block;
}

.rf-image-fluid {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.rf-donation-content {
    flex: 1;
}

.rf-donation-title {
    font-family: 'Eordeoghlakat', serif;
    letter-spacing: 1.5px;
    color: var(--rf-title);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
}

.rf-donation-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.rf-donation-title a:hover {
    color: var(--rf-subtitle);
}

.rf-donation-text {
    color: var(--rf-text);
    line-height: 1.4;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 992px) {
    .rf-donation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rf-donation-item {
        gap: 20px;
    }

    .rf-donation-image {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .rf-donation-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .rf-donation-image {
        width: 150px;
        margin: 0 auto;
    }

    .rf-donation-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rf-donation-image {
        width: 120px;
    }

    .rf-donation-title {
        font-size: 18px;
    }
}

.rf-pages {
    padding: 70px 0;
    color: #000;
}

.rf-pages h2,
.rf-pages h3 {
    font-family: 'Eordeoghlakat', serif;
    margin: 22px 0 16px 0;
    letter-spacing: 2px;
}

.rf-pages ul {
    margin: 16px 0 16px 20px;
}

    .rf-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    .rf-modal.rf-modal-active {
        display: flex;
    }
    
    .rf-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
    }
    
    .rf-modal-container {
        position: relative;
        background: var(--rf-body);
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border: 2px solid var(--rf-border);
        overflow: hidden;
        animation: rfModalSlideIn 0.3s ease-out;
    }
    
    @keyframes rfModalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .rf-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--rf-text);
        cursor: pointer;
        z-index: 10;
        transition: color 0.3s;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .rf-modal-close:hover {
        color: var(--rf-border);
        background: rgba(130, 30, 44, 0.1);
    }
    
    .rf-modal-tabs {
        display: flex;
        border-bottom: 2px solid #eee;
        background: #f8f9fa;
    }
    
    .rf-tab-btn {
        flex: 1;
        padding: 20px;
        background: none;
        border: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: var(--rf-text);
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
    }
    
    .rf-tab-btn:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--rf-subtitle);
        transform: scaleX(0);
        transition: transform 0.3s;
    }
    
    .rf-tab-btn.rf-tab-active {
        color: var(--rf-title);
    }
    
    .rf-tab-btn.rf-tab-active:after {
        transform: scaleX(1);
    }
    
    .rf-tab-content {
        display: none;
        padding: 40px;
    }
    
    .rf-tab-content.rf-tab-active {
        display: block;
    }
    
    .rf-modal-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .rf-modal-title {
        font-family: 'Eordeoghlakat', serif;
        color: var(--rf-title);
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .rf-modal-subtitle {
        color: var(--rf-text);
    }
    
    .rf-auth-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .rf-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .rf-input-with-icon {
        position: relative;
    }
    
    .rf-input-with-icon i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--rf-text);
        font-size: 16px;
    }
    
    .rf-input-with-icon input,
    .rf-input-with-icon select {
        width: 100%;
        padding: 14px 15px 14px 45px;
        border: 2px solid #eee;
        border-radius: 6px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        transition: all 0.3s;
        background: white;
    }
    
    .rf-input-with-icon select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2385847d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 12px;
        padding-right: 45px;
    }
    
    .rf-input-with-icon input:focus,
    .rf-input-with-icon select:focus {
        outline: none;
        border-color: var(--rf-subtitle);
        box-shadow: 0 0 0 3px rgba(174, 139, 43, 0.1);
    }
    
    .rf-form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .rf-checkbox {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        font-size: 14px;
        color: var(--rf-text);
    }
    
    .rf-checkbox input {
        display: none;
    }
    
    .rf-checkbox-custom {
        width: 18px;
        height: 18px;
        border: 2px solid #ddd;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .rf-checkbox input:checked + .rf-checkbox-custom {
        background: var(--rf-subtitle);
        border-color: var(--rf-subtitle);
    }
    
    .rf-checkbox input:checked + .rf-checkbox-custom:after {
        content: '✓';
        color: white;
        font-size: 12px;
        font-weight: bold;
    }
    
    .rf-forgot-link {
        color: var(--rf-subtitle);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }
    
    .rf-forgot-link:hover {
        color: var(--rf-border);
    }
    
    .rf-form-error {
        background: #fee;
        border: 1px solid #f5c6cb;
        color: #721c24;
        padding: 12px 15px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }
    
    .rf-form-error i {
        font-size: 18px;
    }
    
    .rf-form-success {
        background: #d4edda;
        border: 1px solid #c3e6cb;
        color: #155724;
        padding: 15px;
        border-radius: 6px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .rf-form-success i {
        font-size: 24px;
        color: #28a745;
        margin-top: 2px;
    }
    
    .rf-form-success h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
    }
    
    .rf-form-success p {
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .rf-auth-submit {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        position: relative;
    }
    
    .rf-modal-footer {
        text-align: center;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        color: var(--rf-text);
        font-size: 14px;
    }
    
    .rf-modal-footer a {
        color: var(--rf-subtitle);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }
    
    .rf-modal-footer a:hover {
        color: var(--rf-border);
    }
    
    .rf-switch-tab {
        color: var(--rf-subtitle) !important;
        cursor: pointer;
    }
    
    @media (max-width: 576px) {
        .rf-modal-container {
            max-width: 100%;
        }
        
        .rf-tab-content {
            padding: 30px 20px;
        }
        
        .rf-form-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .rf-modal-tabs {
            flex-direction: column;
        }
        
        .rf-tab-btn {
            padding: 15px;
        }
    }














































@media (max-width: 992px) {
    .rf-winners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rf-footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .rf-about {
        flex-direction: column;
    }

    .rf-support {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .rf-menu-toggle {
        display: block;
    }

    .rf-nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--rf-header);
        padding: 20px;
        border-bottom: 2px solid var(--rf-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        flex-direction: column;
        align-items: flex-start;
    }

    .rf-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .rf-nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-bottom: 20px;
    }

    .rf-buttons {
        margin-left: 0;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .rf-btn {
        width: 100%;
        text-align: center;
    }

    .rf-banner-buttons {
        flex-direction: column;
    }

    .rf-winners-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .rf-partners {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .rf-winners-grid {
        grid-template-columns: 1fr;
    }

    .rf-footer-top {
        grid-template-columns: 1fr;
    }

    .rf-title {
        font-size: 36px;
    }

    .rf-subtitle {
        font-size: 24px;
    }

    .rf-logo img {
        height: 40px;
    }

    .rf-banner {
        background-position: left center;
        padding: 70px 0 60px 0;
    }
}