:root {
    --primary-bg: linear-gradient(90deg, #000000, #0d1521, #070e18);
    --primary-accent: #0d1521;
    --text-accent: #d0d0e2;
    --error-color: #fb139b;
    --success-color: #00ff75;
    --link-color: #80d9ff;
    --max-width: 1420px;
    --font-heading: 'Unica One', cursive;
    --font-body: 'Spectral', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-accent);
    background: var(--primary-bg);
    line-height: 1.6;
}

.fdp-warning-banner {
    background-color: rgba(13, 21, 33, 0.9);
    padding: 10px 0;
    border-bottom: 1px solid rgba(208, 208, 226, 0.1);
}

.fdp-warning-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

.fdp-warning-content i {
    font-size: 1.2rem;
    color: var(--error-color);
}

.fdp-warning-content p {
    font-size: 0.9rem;
    text-align: center;
    flex-grow: 1;
}

.fdp-warning-close {
    background: none;
    border: none;
    color: var(--text-accent);
    cursor: pointer;
    font-size: 1.2rem;
}

.fdp-header {
    background-color: var(--primary-accent);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fdp-header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.fdp-logo img {
    height: 50px;
    width: auto;
}

.fdp-auth-button {
    background-color: var(--link-color);
    color: var(--primary-accent);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.fdp-auth-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.fdp-nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
}

.fdp-nav-list a {
    color: var(--text-accent);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.fdp-nav-list a:hover {
    color: var(--link-color);
}

.fdp-auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fdp-auth-modal.active {
    display: flex;
    opacity: 1;
}

.fdp-auth-container {
    background-color: var(--primary-accent);
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fdp-auth-modal.active .fdp-auth-container {
    transform: scale(1);
}

.fdp-auth-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fdp-auth-close:hover {
    transform: rotate(-180deg);
}

.fdp-auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(208, 208, 226, 0.2);
}

.fdp-auth-tab {
    background: none;
    border: none;
    color: var(--text-accent);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.fdp-auth-tab.active {
    opacity: 1;
}

.fdp-auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--link-color);
}

.fdp-auth-form {
    display: none;
}

.fdp-auth-form.active {
    display: block;
}

.fdp-form-group {
    margin-bottom: 20px;
}

.fdp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.fdp-form-input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(208, 208, 226, 0.1);
    border: 1px solid rgba(208, 208, 226, 0.2);
    border-radius: 4px;
    color: var(--text-accent);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.fdp-form-input:focus {
    outline: none;
    border-color: var(--link-color);
    background-color: rgba(128, 217, 255, 0.1);
}

.fdp-form-error {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 16px;
}

.fdp-form-checkbox-group {
    margin-bottom: 20px;
}

.fdp-checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.fdp-form-checkbox {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.fdp-form-checkbox-group a {
    color: var(--link-color);
    text-decoration: none;
}

.fdp-form-checkbox-group a:hover {
    text-decoration: underline;
}

.fdp-forgot-password {
    display: block;
    text-align: right;
    margin-bottom: 20px;
    color: var(--link-color);
    font-size: 0.9rem;
    text-decoration: none;
}

.fdp-forgot-password:hover {
    text-decoration: underline;
}

.fdp-form-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--link-color);
    color: var(--primary-accent);
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.fdp-form-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.fdp-form-submit:disabled {
    background-color: rgba(128, 217, 255, 0.5);
    cursor: not-allowed;
    transform: none;
}

.fdp-form-logo {
    margin-top: 30px;
    text-align: center;
}

.fdp-form-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.fdp-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fdp-success-modal.active {
    display: flex;
    opacity: 1;
}

.fdp-success-container {
    background-color: var(--primary-accent);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fdp-success-modal.active .fdp-success-container {
    transform: scale(1);
}

.fdp-success-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fdp-success-close:hover {
    transform: rotate(-180deg);
}

.fdp-success-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.fdp-success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--success-color);
}

.fdp-success-message {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.fdp-success-button {
    padding: 10px 25px;
    background-color: var(--success-color);
    color: var(--primary-accent);
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fdp-success-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .fdp-nav-list {
        gap: 12px;
    }
    
    .fdp-nav-list a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .fdp-header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .fdp-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .fdp-auth-container {
        max-width: 90%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .fdp-warning-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fdp-warning-content i {
        display: none;
    }
    
    .fdp-nav-list {
        gap: 8px;
    }
    
    .fdp-nav-list a span {
        display: none;
    }
    
    .fdp-auth-tab {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .fdp-auth-container {
        padding: 15px;
    }
    
    .fdp-auth-tab {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .fdp-form-input {
        padding: 10px 12px;
    }
}

.fdp-about-section-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fdp-about-section-background {
    content: "";
    background-image: url('../fdp-image/fdp-bg-image-1.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(0.6);
    transition: transform 0.8s ease-in-out;
}

.fdp-about-section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 2rem;
    z-index: 1;
    position: relative;
}

.fdp-about-section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdp-about-section-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    opacity: 0.9;
}

.fdp-about-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.fdp-about-card {
    flex: 1 1 calc(33% - 1.3rem);
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.fdp-about-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.fdp-about-card-icon {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.fdp-about-card:hover .fdp-about-card-icon {
    transform: rotate(10deg);
}

.fdp-about-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.fdp-about-card-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1280px) {
    .fdp-about-card {
        flex: 1 1 calc(33% - 1.3rem);
    }
}

@media (max-width: 1024px) {
    .fdp-about-section-title {
        font-size: 2.5rem;
    }

    .fdp-about-card {
        flex: 1 1 calc(33% - 1.3rem);
    }
}

@media (max-width: 768px) {
    .fdp-about-section-title {
        font-size: 2rem;
    }

    .fdp-about-cards-grid {
        justify-content: center;
    }

    .fdp-about-card {
        flex: 1 1 calc(45% - 1rem);
    }
}

@media (max-width: 480px) {
    .fdp-about-section-title {
        font-size: 1.8rem;
    }

    .fdp-about-section-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .fdp-about-card {
        flex: 1 1 100%;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

.fdp-about-section-background:hover {
    transform: scale(1.02) rotate(0.5deg);
}

.fdp-timer-section-wrapper {
    width: 100%;
    padding: 4rem 2rem;
    background: var(--primary-bg);
    color: #fff;
}

.fdp-timer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.fdp-timer-content {
    max-width: 800px;
}

.fdp-timer-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: pulseTitle 2s ease-in-out infinite alternate;
}

.fdp-timer-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.fdp-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.fdp-timer-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.fdp-timer-block:hover {
    transform: scale(1.05) rotate(1deg);
    background: rgba(255, 255, 255, 0.15);
}

.fdp-timer-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--success-color);
    animation: skewDigits 1s ease-in-out infinite alternate;
}

.fdp-timer-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #ccc;
}

@media (max-width: 768px) {
    .fdp-timer-title {
        font-size: 2rem;
    }

    .fdp-timer-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .fdp-countdown-timer {
        flex-direction: column;
        align-items: center;
    }

    .fdp-timer-block {
        min-width: 140px;
        margin: 0.5rem 0;
    }
}

@keyframes pulseTitle {
    0% {
        transform: scale(1) skewX(0deg);
    }
    100% {
        transform: scale(1.02) skewX(-1deg);
    }
}

@keyframes skewDigits {
    0% {
        transform: skewX(0deg);
    }
    100% {
        transform: skewX(2deg);
    }
}

.fdp-process-section-wrapper {
    width: 100%;
    padding: 6rem 2rem;
    background: linear-gradient(90deg, #f5a524, #ffe066, #ffd93d);
    color: #000;
}

.fdp-process-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    background-color: #0d1521;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.fdp-process-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #fff;
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdp-responsibility-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--error-color);
    border-right: 4px solid var(--error-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.fdp-responsibility-warning::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    z-index: -1;
}

.fdp-warning-icon-start,
.fdp-warning-icon-end {
    font-size: 1.6rem;
    color: var(--error-color);
    animation: pulseIcon 1.5s ease-in-out infinite alternate;
}

.fdp-warning-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
    color:  var(--success-color);
}

.fdp-process-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
}

.fdp-process-card {
    flex: 1 1 calc(33% - 1.5rem);
    min-width: 280px;
    background-color: #070e18;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 254, 254, 0.4);
    transition: transform 0.4s ease, background-color 0.4s ease;
    cursor: pointer;
}

.fdp-process-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(0.3deg);
    background-color: #0a121c;
}

.fdp-process-card-icon {
    font-size: 2.4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.fdp-process-card:hover .fdp-process-card-icon {
    transform: rotate(10deg);
}

.fdp-process-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.fdp-process-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cfcfd6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .fdp-process-title {
        font-size: 2.4rem;
    }

    .fdp-process-card {
        flex: 1 1 calc(48% - 1rem);
    }
}

@media (max-width: 768px) {
    .fdp-process-section-wrapper,
    .fdp-process-container {
        padding: 6rem 0.5rem;
    }

    .fdp-process-title {
        font-size: 2rem;
    }

    .fdp-responsibility-warning {
        padding: 1.2rem 0.5rem;
    }

    .fdp-process-card {
        flex: 1 1 100%;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.fdp-reviews-section-wrapper {
    width: 100%;
    padding: 6rem 2rem;
    background: var(--primary-bg);
    color: #fff;
}

.fdp-reviews-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.fdp-reviews-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--success-color);
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdp-reviews-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.fdp-review-card {
    flex: 1 1 calc(45% - 1.25rem);
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: default;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fdp-review-card:hover {
    transform: translateY(-10px) scale(1.02) rotate(0.5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.fdp-review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.fdp-review-card-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
}

.fdp-review-card-icon {
    font-size: 1.4rem;
    color: var(--success-color);
    transition: transform 0.3s ease;
}

.fdp-review-card:hover .fdp-review-card-icon {
    transform: rotate(15deg);
}

.fdp-review-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: #aaa;
}

.fdp-review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-accent);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.fdp-review-footer-icon {
    font-size: 1.3rem;
    color: var(--link-color);
    text-align: right;
}

@media (max-width: 1024px) {
    .fdp-review-card {
        flex: 1 1 calc(48% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .fdp-reviews-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .fdp-review-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .fdp-review-card {
        padding: 1.5rem 1.2rem;
    }

    .fdp-review-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .fdp-review-card-icon {
        margin-left: auto;
    }

    .fdp-review-card-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .fdp-review-footer-icon {
        text-align: left;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

.fdp-lottery-features-section {
    width: 100%;
    padding: 6rem 2rem;
    background-color: #fff;
    color: #000;
}

.fdp-lottery-content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    background: rgba(13, 21, 33, 0.25);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.fdp-lottery-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #fff;
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdp-lottery-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.fdp-lottery-card {
    flex: 1 1 calc(45% - 1.25rem);
    min-width: 280px;
    background-color: #0d1521;
    border-radius: 14px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, background-color 0.4s ease;
    cursor: default;
    position: relative;
    color: #fff;
}

.fdp-lottery-card:hover {
    transform: translateY(-10px) scale(1.02) rotate(0.5deg);
    background-color: #0a111a;
}

.fdp-lottery-icon {
    font-size: 2.2rem;
    color: var(--error-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.fdp-lottery-card:hover .fdp-lottery-icon {
    transform: rotate(10deg);
}

.fdp-lottery-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.fdp-lottery-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .fdp-lottery-card {
        flex: 1 1 calc(48% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .fdp-lottery-features-section,
    .fdp-lottery-content-wrapper {
        padding: 3rem 0.5rem;
    }

    .fdp-lottery-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .fdp-lottery-card {
        flex: 1 1 100%;
    }
}

.fdp-section-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #000;
    background-color: var(--success-color);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 255, 117, 0.4);
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fdp-section-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    z-index: 0;
    transition: transform 0.4s ease;
}

.fdp-section-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.fdp-section-button:hover {
    transform: skewX(-3deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 255, 117, 0.6);
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

.fdp-faq-section {
    position: relative;
    width: 100%;
    padding: 6rem 2rem;
    overflow: hidden;
}

.fdp-faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../fdp-image/fdp-bg-image-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.7);
    transition: transform 0.8s ease-in-out;
}

.fdp-faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 33, 0.85);
    z-index: -1;
}

.fdp-faq-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.fdp-faq-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--success-color);
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdp-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.fdp-faq-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.fdp-faq-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.fdp-faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    text-align: left;
    transition: background-color 0.3s ease;
}

.fdp-faq-question::after {
    content: "+";
    position: absolute;
    right: 1.7rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.fdp-faq-card.active .fdp-faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.fdp-faq-answer {
    height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: #0a111a;
    padding: 0 1.5rem;
    opacity: 0;
}

.fdp-faq-card.active .fdp-faq-answer {
    height: auto;
    padding: 1.2rem 1.5rem;
    opacity: 1;
}

.fdp-faq-answer p {
    height: auto;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-accent);
    opacity: 0.9;
}

.fdp-section-button {
    display: inline-block;
    margin-top: 4rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #000;
    background-color: var(--success-color);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 255, 117, 0.4);
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fdp-section-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    z-index: 0;
    transition: transform 0.4s ease;
}

.fdp-section-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.fdp-section-button:hover {
    transform: skewX(-3deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 255, 117, 0.6);
}

@media (max-width: 768px) {
    .fdp-faq-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .fdp-faq-question {
        font-size: 1rem;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

.fdp-footer-section {
    width: 100%;
    background-color: #fff;
    color: #000;
    font-family: var(--font-body);
}

.fdp-responsible-gaming-wrapper {
    width: 100%;
    padding: 4rem 2rem;
    background: var(--primary-bg);
    color: #fff;
}

.fdp-responsible-gaming-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.fdp-responsible-gaming-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--error-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdp-responsible-icon-start,
.fdp-responsible-icon-end {
    font-size: 1.8rem;
    color: var(--error-color);
    animation: pulseIcon 1.5s ease-in-out infinite alternate;
}

.fdp-responsible-gaming-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--success-color);
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.fdp-footer-top-divider {
    width: 100%;
    height: 5px;
    background: var(--error-color);
    margin: 0 0 2rem;
}

.fdp-footer-partners {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.fdp-footer-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.fdp-footer-partner-link img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.fdp-footer-partner-link:hover img {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1);
}

.fdp-footer-adults-only img {
    border-radius: 50%;
    box-shadow: 0 0 10px var(--error-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fdp-footer-adults-only:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px var(--error-color);
}

.fdp-footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.fdp-footer-nav-link {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.fdp-footer-nav-link:hover {
    color: var(--link-color);
    transform: skewX(-3deg);
}

.fdp-footer-copyright {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 1024px) {
    .fdp-responsible-gaming-title {
        font-size: 2rem;
    }

    .fdp-responsible-gaming-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .fdp-responsible-gaming-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .fdp-footer-partner-logos {
        flex-direction: column;
        align-items: center;
    }

    .fdp-footer-partner-link,
    .fdp-footer-adults-only {
        order: 1;
    }

    .fdp-footer-adults-only {
        order: 0;
    }

    .fdp-footer-nav-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fdp-responsible-gaming-title {
        font-size: 1.6rem;
    }

    .fdp-responsible-gaming-text {
        font-size: 0.95rem;
    }

    .fdp-footer-nav-link {
        font-size: 0.9rem;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.fdp-age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.fdp-age-verification-modal.active {
    display: flex;
}

.fdp-age-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.99);
    z-index: -1;
}

.fdp-age-content {
    background: var(--primary-bg);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out;
}

.fdp-age-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--error-color);
    margin-bottom: 1.5rem;
}

.fdp-age-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.fdp-age-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fdp-age-button {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.fdp-age-confirm {
    background-color: var(--success-color);
    color: #000;
}

.fdp-age-confirm:hover {
    transform: scale(1.05) skewX(-3deg);
    box-shadow: 0 5px 15px rgba(0, 255, 117, 0.6);
}

.fdp-age-decline {
    background-color: var(--error-color);
    color: #fff;
}

.fdp-age-decline:hover {
    transform: scale(1.05) rotate(1deg);
}

.fdp-cookies-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0d1521;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-wrap: wrap;
}

.fdp-cookies-consent.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fdp-cookies-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.fdp-cookies-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d0d0e2;
    flex: 1;
    min-width: 280px;
}

.fdp-cookies-link {
    color: var(--link-color);
    text-decoration: underline;
}

.fdp-cookies-button {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    background-color: var(--success-color);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fdp-cookies-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 117, 0.5);
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fdppage-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fdppage-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../fdp-image/fdp-bg-image-1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transition: transform 0.8s ease-in-out;
}

.fdppage-hero-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 33, 0.75);
    z-index: 1;
}

.fdppage-hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.fdppage-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdppage-hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

.fdppage-contact-form-section {
    width: 100%;
    padding: 6rem 2rem;
    background: var(--primary-bg);
    color: #fff;
}

.fdppage-contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.fdppage-contact-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--success-color);
}

.fdppage-contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.fdppage-form-group {
    margin-bottom: 2rem;
    position: relative;
}

.fdppage-form-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.fdppage-form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #0d1521;
    color: #fff;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.fdppage-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.fdppage-form-input:focus {
    box-shadow: 0 0 0 2px var(--link-color);
}

.fdppage-error-message {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    min-height: 1.2em;
    display: block;
}

.fdppage-form-checkbox {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.fdppage-form-check {
    cursor: pointer;
}

.fdppage-form-check-label {
    font-size: 0.95rem;
    color: #cfcfd6;
    line-height: 1.4;
}

.fdppage-link {
    color: var(--link-color);
    text-decoration: underline;
}

.fdppage-form-button {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    background: var(--success-color);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: not-allowed;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.fdppage-form-button.active {
    cursor: pointer;
    opacity: 1;
    background: var(--success-color);
    transform: skewX(-3deg) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 255, 117, 0.5);
}

.fdppage-form-button:hover.active {
    transform: scale(1.05) skewX(-3deg);
}

.fdppage-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fdppage-success-content {
    background: #0d1521;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 255, 117, 0.4);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.fdppage-success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fdppage-success-close:hover {
    transform: rotate(90deg);
}

.fdppage-success-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fdppage-success-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--success-color);
}

.fdppage-success-text {
    font-size: 1rem;
    color: #d0d0e2;
}

@media (max-width: 768px) {
    .fdppage-hero-title {
        font-size: 2.4rem;
    }

    .fdppage-hero-description {
        font-size: 1rem;
    }

    .fdppage-contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fdppage-hero-title {
        font-size: 2rem;
    }

    .fdppage-hero-description {
        font-size: 0.95rem;
    }

    .fdppage-contact-title {
        font-size: 1.8rem;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fdppage-privacy-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fdppage-privacy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../fdp-image/fdp-bg-image-1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.fdppage-privacy-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 33, 0.85);
    z-index: 1;
}

.fdppage-privacy-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
}

.fdppage-privacy-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--success-color);
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdppage-privacy-content-section {
    width: 100%;
    padding: 6rem 2rem;
    background: var(--primary-bg);
    color: var(--text-accent);
}

.fdppage-privacy-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.fdpblock-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.fdppage-privacy-subtitle {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fdppage-privacy-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-accent);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.fdppage-privacy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.fdppage-privacy-item {
    background-color: #0d1521;
    border-radius: 14px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease, background-color 0.4s ease;
    flex: 1 1 calc(45% - 1.25rem);
    min-width: 280px;
    text-align: center;
    position: relative;
}

.fdppage-privacy-item:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: #0a111a;
}

.fdppage-privacy-icon {
    font-size: 2.2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.fdppage-privacy-item:hover .fdppage-privacy-icon {
    transform: rotate(10deg);
}

.fdppage-privacy-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--link-color);
    margin-bottom: 0.8rem;
}

.fdppage-privacy-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-accent);
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .fdppage-privacy-item {
        flex: 1 1 calc(48% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .fdppage-privacy-title {
        font-size: 2.4rem;
    }

    .fdppage-privacy-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fdppage-privacy-title {
        font-size: 2rem;
    }

    .fdppage-privacy-subtitle {
        font-size: 1.6rem;
    }

    .fdppage-privacy-item {
        flex: 1 1 100%;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

.fdppage-cookies-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fdppage-cookies-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../fdp-image/fdp-bg-image-2.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}

.fdppage-cookies-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 33, 0.85);
    z-index: 1;
}

.fdppage-cookies-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
}

.fdppage-cookies-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--success-color);
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdppage-cookies-details-section {
    width: 100%;
    padding: 6rem 2rem;
    background: var(--primary-bg);
    color: var(--text-accent);
}

.fdppage-cookies-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.fdppage-cookies-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.fdppage-cookies-subtitle {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fdppage-cookies-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-accent);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.fdppage-cookies-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.fdppage-cookies-item {
    background-color: #0d1521;
    border-radius: 14px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease, background-color 0.4s ease;
    flex: 1 1 calc(45% - 1.25rem);
    min-width: 280px;
    text-align: center;
    position: relative;
}

.fdppage-cookies-item:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: #0a111a;
}

.fdppage-cookies-icon {
    font-size: 2.2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.fdppage-cookies-item:hover .fdppage-cookies-icon {
    transform: rotate(10deg);
}

.fdppage-cookies-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--link-color);
    margin-bottom: 0.8rem;
}

.fdppage-cookies-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-accent);
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .fdppage-cookies-item {
        flex: 1 1 calc(48% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .fdppage-cookies-title {
        font-size: 2.4rem;
    }

    .fdppage-cookies-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fdppage-cookies-title {
        font-size: 2rem;
    }

    .fdppage-cookies-subtitle {
        font-size: 1.6rem;
    }

    .fdppage-cookies-item {
        flex: 1 1 100%;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}

.fdppage-responsible-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fdppage-responsible-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../fdp-image/fdp-bg-image-2.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.fdppage-responsible-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 33, 0.85);
    z-index: 1;
}

.fdppage-responsible-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
}

.fdppage-responsible-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--success-color);
    animation: floatTitle 2s ease-in-out infinite alternate;
}

.fdppage-responsible-details-section {
    width: 100%;
    padding: 6rem 2rem;
    background: var(--primary-bg);
    color: var(--text-accent);
}

.fdppage-responsible-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.fdppage-responsible-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.fdppage-responsible-subtitle {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fdppage-responsible-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-accent);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.fdppage-responsible-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.fdppage-responsible-item {
    background-color: #0d1521;
    border-radius: 14px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease, background-color 0.4s ease;
    flex: 1 1 calc(45% - 1.25rem);
    min-width: 280px;
    text-align: center;
    position: relative;
}

.fdppage-responsible-item:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: #0a111a;
}

.fdppage-responsible-icon {
    font-size: 2.2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.fdppage-responsible-item:hover .fdppage-responsible-icon {
    transform: rotate(10deg);
}

.fdppage-responsible-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--link-color);
    margin-bottom: 0.8rem;
}

.fdppage-responsible-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-accent);
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .fdppage-responsible-item {
        flex: 1 1 calc(48% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .fdppage-responsible-title {
        font-size: 2.4rem;
    }

    .fdppage-responsible-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fdppage-responsible-title {
        font-size: 2rem;
    }

    .fdppage-responsible-subtitle {
        font-size: 1.6rem;
    }

    .fdppage-responsible-item {
        flex: 1 1 100%;
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0px) skewX(0deg);
    }
    100% {
        transform: translateY(-5px) skewX(1deg);
    }
}