:root {
    --oht-primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --oht-secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --oht-accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --oht-dark-text: #2d3748;
    --oht-light-text: #ffffff;
    --oht-background-light: #f7fafc;
    --oht-card-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --oht-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oxygen', sans-serif;
    color: var(--oht-dark-text);
    background: var(--oht-background-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.oht_header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--oht-primary-gradient);
    position: relative;
    z-index: 1000;
}

.oht_header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.oht_header-logo img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    transition: var(--oht-transition-smooth);
}

.oht_header-logo:hover img {
    transform: scale(1.05) rotate(5deg);
}

.oht_header-title {
    font-family: 'Judson', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--oht-light-text);
}

.oht_header-navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.oht_nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--oht-light-text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--oht-transition-smooth);
}

.oht_nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.oht_nav-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    gap: 2rem;
}

.oht_nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--oht-light-text);
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--oht-transition-smooth);
    position: relative;
    overflow: hidden;
}

.oht_nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--oht-light-text);
    transition: var(--oht-transition-smooth);
}

.oht_nav-link:hover::before {
    left: 0;
}

.oht_nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.oht_weekly-draws {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--oht-accent-gradient);
    overflow: hidden;
}

.oht_draws-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.oht_draws-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.25) 0%, transparent 50%),
        linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: oht_background-float 12s ease-in-out infinite;
}

@keyframes oht_background-float {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    25% { 
        transform: scale(1.05) rotate(1deg);
        opacity: 0.15;
    }
    50% { 
        transform: scale(1.03) rotate(-1deg);
        opacity: 0.12;
    }
    75% { 
        transform: scale(1.06) rotate(0.5deg);
        opacity: 0.18;
    }
}

.oht_draws-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.oht_draws-content h1 {
    font-family: 'Judson', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--oht-light-text);
    margin-bottom: 1.5rem;
    animation: oht_title-float 6s ease-in-out infinite;
}

@keyframes oht_title-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.oht_draws-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.oht_draws-highlight i {
    font-size: 2rem;
    color: var(--oht-light-text);
    animation: oht_icon-spin 8s linear infinite;
}

@keyframes oht_icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.oht_draws-highlight p {
    color: var(--oht-light-text);
    font-size: 1.2rem;
    font-weight: 300;
}

.oht_draws-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.oht_timer-unit {
    width: 100%;
    min-width: 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: oht_timer-float 4s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

@keyframes oht_timer-float {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(5deg); }
}

.oht_timer-value {
    display: block;
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--oht-light-text);
    min-height: 70px;
}

.oht_timer-label {
    font-size: 0.9rem;
    color: var(--oht-light-text);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oht_draws-action {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--oht-secondary-gradient);
    color: var(--oht-light-text);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1.1rem;
    transition: var(--oht-transition-smooth);
    position: relative;
    overflow: hidden;
}

.oht_draws-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.oht_draws-action:hover::before {
    left: 100%;
}

.oht_draws-action:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.oht_package-selection {
    padding: 6rem 2rem;
    background: var(--oht-background-light);
}

.oht_package-selection h2 {
    font-family: 'Judson', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--oht-dark-text);
    position: relative;
}

.oht_package-selection h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--oht-primary-gradient);
    border-radius: 2px;
}

.oht_package-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.oht_package-card {
    background: var(--oht-light-text);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--oht-card-shadow);
    text-align: center;
    transition: var(--oht-transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.oht_package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--oht-primary-gradient);
    transform: scaleX(0);
    transition: var(--oht-transition-smooth);
}

.oht_package-card:hover::before {
    transform: scaleX(1);
}

.oht_package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.oht_package-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transition: var(--oht-transition-smooth);
}

.oht_package-card:hover .oht_package-icon {
    transform: scale(1.2) rotate(10deg);
    background: var(--oht-primary-gradient);
    color: var(--oht-light-text);
}

.oht_package-card h3 {
    font-family: 'Judson', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--oht-dark-text);
    min-height: 60px;
}

.oht_package-details {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
}

.oht_package-details p {
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.oht_package-cost {
    font-family: 'Judson', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.oht_package-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 80px;
}

.oht_package-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--oht-primary-gradient);
    color: var(--oht-light-text);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 400;
    transition: var(--oht-transition-smooth);
    position: relative;
    overflow: hidden;
}

.oht_package-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--oht-transition-smooth);
    transform: translate(-50%, -50%);
}

.oht_package-action:hover::before {
    width: 300px;
    height: 300px;
}

.oht_package-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.oht_responsible-gaming {
    padding: 4rem 2rem;
    background: var(--oht-secondary-gradient);
    text-align: center;
}

.oht_responsible-gaming h2 {
    font-family: 'Judson', serif;
    font-size: 2.2rem;
    color: var(--oht-light-text);
    margin-bottom: 3rem;
}

.oht_partner-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.oht_partner-logo {
    display: inline-block;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--oht-transition-smooth);
    backdrop-filter: blur(10px);
}

.oht_partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
}

.oht_partner-logo img {
    width: 200px;
    height: 80px;
    filter: brightness(0) invert(1);
    transition: var(--oht-transition-smooth);
}

.oht_partner-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.oht_footer-container {
    background: var(--oht-dark-text);
    color: var(--oht-light-text);
    padding: 4rem 2rem 2rem;
}

.oht_footer-sections {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 3rem;
}

.oht_footer-brand {

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oht_footer-title {
    font-family: 'Judson', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.oht_footer-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.oht_footer-links a {
    color: var(--oht-light-text);
    text-decoration: none;
    transition: var(--oht-transition-smooth);
    opacity: 0.8;
}

.oht_footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.oht_footer-responsibility {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oht_footer-responsibility p {
    opacity: 0.8;
    line-height: 1.6;
}

.oht_age-restriction {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.oht_age-restriction i {
    font-size: 1.5rem;
    color: #f5576c;
}

.oht_footer-compliance {
    grid-column: 1 / -1;
}

.oht_footer-compliance h3 {
    font-family: 'Judson', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--oht-light-text);
}

.oht_footer-compliance p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.5;
}

.oht_footer-legal {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.oht_footer-icons {
    display: flex;
    gap: 1rem;
}

.oht_footer-icons a {
    color: var(--oht-light-text);
    font-size: 1.3rem;
    opacity: 0.7;
    transition: var(--oht-transition-smooth);
    padding: 0.5rem;
    border-radius: 6px;
}

.oht_footer-icons a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.oht_cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--oht-dark-text);
    color: var(--oht-light-text);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    border-top: 3px solid var(--oht-primary-gradient);
}

.oht_cookie-notification-bar.active {
    transform: translateY(0);
}

.oht_cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.oht_cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.oht_cookie-content i {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.oht_cookie-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.oht_cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.oht_cookie-learn {
    color: var(--oht-light-text);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: var(--oht-transition-smooth);
}

.oht_cookie-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.oht_cookie-accept {
    background: var(--oht-primary-gradient);
    color: var(--oht-light-text);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--oht-transition-smooth);
    font-weight: 400;
}

.oht_cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.oht_age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.oht_age-confirmation-dialog {
    background: var(--oht-light-text);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--oht-primary-gradient);
    animation: oht_modal-appear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes oht_modal-appear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.oht_age-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.oht_age-confirmation-dialog h2 {
    font-family: 'Judson', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--oht-dark-text);
}

.oht_age-confirmation-dialog p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.oht_age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.oht_age-confirm {
    background: var(--oht-primary-gradient);
    color: var(--oht-light-text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    transition: var(--oht-transition-smooth);
    flex: 1;
}

.oht_age-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.oht_age-decline {
    background: transparent;
    color: var(--oht-dark-text);
    border: 1px solid #ccc;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    transition: var(--oht-transition-smooth);
    flex: 1;
}

.oht_age-decline:hover {
    background: #f7fafc;
    border-color: #999;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .oht_draws-content h1 {
        font-size: 3rem;
    }
    
    .oht_timer-value {
        font-size: 2.5rem;
        min-height: 60px;
    }
    
    .oht_package-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .oht_header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .oht_nav-toggle {
        display: block;
    }
    
    .oht_nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--oht-primary-gradient);
        padding: 1rem;
        border-radius: 0 0 15px 15px;
    }
    
    .oht_nav-menu.active {
        display: flex;
    }
    
    .oht_draws-content h1 {
        font-size: 2.5rem;
    }
    
    .oht_draws-timer {
        gap: 1rem;
    }
    
    .oht_timer-unit {
        padding: 1rem;
    }
    
    .oht_timer-value {
        font-size: 2rem;
        min-height: 50px;
    }
    
    .oht_package-container {
        gap: 1.5rem;
    }
    
    .oht_partner-links {
        gap: 2rem;
    }
    
    .oht_cookie-consent-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .oht_age-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .oht_header-container,
    .oht_weekly-draws,
    .oht_package-selection,
    .oht_responsible-gaming,
    .oht_footer-container {
        padding: 0.5rem;
    }
    
    .oht_draws-content h1 {
        font-size: 2rem;
        animation: none;
    }
    
    .oht_draws-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .oht_timer-unit {
        padding: 0.8rem;
        animation: none;
    }
    
    .oht_timer-value {
        font-size: 1.5rem;
        min-height: 40px;
    }
    
    .oht_package-card {
        padding: 1.5rem;
        transform: none !important;
    }
    
    .oht_package-card:hover {
        transform: none !important;
    }
    
    .oht_package-icon {
        transform: none !important;
    }
    
    .oht_partner-links {
        flex-direction: column;
        align-items: center;
    }
    
    .oht_footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .oht_footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .oht_cookie-notification-bar {
        padding: 1rem;
    }
    
    .oht_age-confirmation-dialog {
        padding: 2rem;
        margin: 0.5rem;
    }
}

@media (max-width: 320px) {
    .oht_draws-content h1 {
        font-size: 1.8rem;
    }
    
    .oht_timer-value {
        font-size: 1.3rem;
    }
    
    .oht_package-card {
        padding: 1rem;
    }
    
    .oht_package-action {
        padding: 0.8rem 1.5rem;
    }
}

.ohtpg_registration-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ohtpg_registration-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ohtpg_hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.ohtpg_hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: ohtpg_background-shift 8s ease-in-out infinite;
}

@keyframes ohtpg_background-shift {
    0%, 100% { transform: skew(0deg, 0deg); }
    50% { transform: skew(2deg, 1deg); }
}

.ohtpg_hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ohtpg_hero-content h1 {
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: ohtpg_title-glow 4s ease-in-out infinite;
}

@keyframes ohtpg_title-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

.ohtpg_hero-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.ohtpg_hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ohtpg_hero-icons i {
    font-size: 2.5rem;
    color: #ffffff;
    animation: ohtpg_icon-bounce 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

@keyframes ohtpg_icon-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.ohtpg_registration-form-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.ohtpg_form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ohtpg_form-container h2 {
    font-family: 'Judson', serif;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.ohtpg_form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ohtpg_form-group {
    margin-bottom: 1.5rem;
}

.ohtpg_input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.ohtpg_input-container i:first-child {
    position: absolute;
    left: 1rem;
    color: #667eea;
    font-size: 1.2rem;
    z-index: 2;
}

.ohtpg_form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.ohtpg_form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.ohtpg_password-toggle {
    position: absolute;
    right: 1rem;
    color: #667eea;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.ohtpg_password-toggle:hover {
    color: #764ba2;
}

.ohtpg_validation-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ohtpg_validation-message.show {
    opacity: 1;
}

.ohtpg_checkbox-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #4a5568;
    line-height: 1.4;
}

.ohtpg_form-checkbox {
    display: none;
}

.ohtpg_checkbox-checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ohtpg_form-checkbox:checked + .ohtpg_checkbox-checkmark {
    background: #667eea;
    border-color: #667eea;
}

.ohtpg_form-checkbox:checked + .ohtpg_checkbox-checkmark::after {
    content: '✓';
    color: #ffffff;
    font-size: 0.875rem;
}

.ohtpg_checkbox-container a {
    color: #667eea;
    text-decoration: none;
}

.ohtpg_checkbox-container a:hover {
    text-decoration: underline;
}

.ohtpg_submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ohtpg_submit-button:enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.ohtpg_submit-button:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ohtpg_form-links {
    text-align: center;
    margin-top: 1.5rem;
}

.ohtpg_form-links p {
    margin-bottom: 1rem;
    color: #b2b3b4;
}

.ohtpg_form-links a {
    color: #667eea;
    text-decoration: none;
}

.ohtpg_form-links a:hover {
    text-decoration: underline;
}

.ohtpg_password-recovery {
    position: relative;
    display: inline-block;
}

.ohtpg_recovery-trigger {
    color: #667eea;
    cursor: pointer;
    text-decoration: underline;
}

.ohtpg_recovery-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2d3748;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    width: 250px;
    font-size: 0.875rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.ohtpg_recovery-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #2d3748;
}

.ohtpg_password-recovery:hover .ohtpg_recovery-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.ohtpg_recovery-tooltip a {
    color: #ffffff;
    text-decoration: underline;
}

.ohtpg_success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.ohtpg_success-overlay.active {
    display: flex;
    animation: ohtpg_overlay-fade 0.3s ease;
}

@keyframes ohtpg_overlay-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ohtpg_success-dialog {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: ohtpg_dialog-scale 0.3s ease;
}

@keyframes ohtpg_dialog-scale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.ohtpg_success-dialog i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

.ohtpg_success-dialog h3 {
    font-family: 'Judson', serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.ohtpg_success-dialog p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ohtpg_success-close {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ohtpg_success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .ohtpg_hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ohtpg_form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_registration-hero,
    .ohtpg_registration-form-section {
        padding: 0.3rem;
    }
    
    .ohtpg_hero-content h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_hero-content p {
        font-size: 0.8rem;
    }
    
    .ohtpg_form-container {
        padding: 1.5rem;
    }
    
    .ohtpg_form-container h2 {
        font-size: 1.5rem;
    }
    
    .ohtpg_form-input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.8rem;
    }
    
    .ohtpg_success-dialog {
        padding: 2rem;
        margin: 0.3rem;
    }
    
    .ohtpg_success-dialog h3 {
        font-size: 1.3rem;
    }
    
    .ohtpg_success-dialog p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_hero-content h1 {
        font-size: 1.8rem;
    }
    
    .ohtpg_form-container {
        padding: 1rem;
    }
    
    .ohtpg_form-input {
        padding: 0.6rem 0.6rem 0.6rem 2.2rem;
    }
}

.ohtpg_login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.ohtpg_login-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ohtpg_login-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.ohtpg_login-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.3) 0%, transparent 50%);
    animation: ohtpg_login-pulse 6s ease-in-out infinite;
}

@keyframes ohtpg_login-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.ohtpg_login-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ohtpg_login-content h1 {
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: ohtpg_login-slide 1s ease-out;
}

@keyframes ohtpg_login-slide {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ohtpg_login-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.ohtpg_login-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ohtpg_login-icons i {
    font-size: 2.5rem;
    color: #ffffff;
    animation: ohtpg_login-rotate 4s linear infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

@keyframes ohtpg_login-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.ohtpg_login-form-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.ohtpg_login-container {
    max-width: 500px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.ohtpg_login-container h2 {
    font-family: 'Judson', serif;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.ohtpg_login-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ohtpg_login-form .ohtpg_form-group {
    margin-bottom: 1.5rem;
}

.ohtpg_login-form .ohtpg_input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.ohtpg_login-form .ohtpg_input-container i:first-child {
    position: absolute;
    left: 1rem;
    color: #4facfe;
    font-size: 1.2rem;
    z-index: 2;
}

.ohtpg_login-form .ohtpg_form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.ohtpg_login-form .ohtpg_form-input:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

.ohtpg_login-form .ohtpg_password-toggle {
    position: absolute;
    right: 1rem;
    color: #4facfe;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.ohtpg_login-form .ohtpg_password-toggle:hover {
    color: #00f2fe;
}

.ohtpg_login-form .ohtpg_validation-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ohtpg_login-form .ohtpg_validation-message.show {
    opacity: 1;
}

.ohtpg_login-form .ohtpg_checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #4a5568;
    line-height: 1.4;
}

.ohtpg_login-form .ohtpg_form-checkbox {
    display: none;
}

.ohtpg_login-form .ohtpg_checkbox-checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ohtpg_login-form .ohtpg_form-checkbox:checked + .ohtpg_checkbox-checkmark {
    background: #4facfe;
    border-color: #4facfe;
}

.ohtpg_login-form .ohtpg_form-checkbox:checked + .ohtpg_checkbox-checkmark::after {
    content: '✓';
    color: #ffffff;
    font-size: 0.875rem;
}

.ohtpg_login-form .ohtpg_checkbox-container a {
    color: #4facfe;
    text-decoration: none;
}

.ohtpg_login-form .ohtpg_checkbox-container a:hover {
    text-decoration: underline;
}

.ohtpg_login-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ohtpg_login-button:enabled:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.ohtpg_login-button:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ohtpg_login-links {
    text-align: center;
    margin-top: 1.5rem;
}

.ohtpg_login-links p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.ohtpg_login-links a {
    color: #4facfe;
    text-decoration: none;
}

.ohtpg_login-links a:hover {
    text-decoration: underline;
}

.ohtpg_login-recovery {
    position: relative;
    display: inline-block;
}

.ohtpg_login-trigger {
    color: #4facfe;
    cursor: pointer;
    text-decoration: underline;
}

.ohtpg_login-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2d3748;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    width: 280px;
    font-size: 0.875rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.ohtpg_login-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #2d3748;
}

.ohtpg_login-recovery:hover .ohtpg_login-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.ohtpg_login-tooltip a {
    color: #ffffff;
    text-decoration: underline;
}

.ohtpg_login-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.ohtpg_login-success-overlay.active {
    display: flex;
    animation: ohtpg_login-overlay-fade 0.4s ease;
}

@keyframes ohtpg_login-overlay-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ohtpg_login-success-dialog {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: ohtpg_login-dialog-bounce 0.5s ease;
}

@keyframes ohtpg_login-dialog-bounce {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.ohtpg_login-success-dialog i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1rem;
    animation: ohtpg_login-success-spin 1s ease;
}

@keyframes ohtpg_login-success-spin {
    from { transform: rotate(0deg) scale(0); }
    to { transform: rotate(360deg) scale(1); }
}

.ohtpg_login-success-dialog h3 {
    font-family: 'Judson', serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.ohtpg_login-success-dialog p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ohtpg_login-success-close {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ohtpg_login-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

@media (max-width: 768px) {
    .ohtpg_login-content h1 {
        font-size: 2.5rem;
    }
    
    .ohtpg_login-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_login-hero,
    .ohtpg_login-form-section {
        padding: 0.3rem;
    }
    
    .ohtpg_login-content h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_login-content p {
        font-size: 0.8rem;
    }
    
    .ohtpg_login-container {
        padding: 1.5rem;
    }
    
    .ohtpg_login-container h2 {
        font-size: 1.5rem;
    }
    
    .ohtpg_login-form .ohtpg_form-input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.8rem;
    }
    
    .ohtpg_login-success-dialog {
        padding: 2rem;
        margin: 0.3rem;
    }
    
    .ohtpg_login-success-dialog h3 {
        font-size: 1.3rem;
    }
    
    .ohtpg_login-success-dialog p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_login-content h1 {
        font-size: 1.8rem;
    }
    
    .ohtpg_login-container {
        padding: 1rem;
    }
    
    .ohtpg_login-form .ohtpg_form-input {
        padding: 0.6rem 0.6rem 0.6rem 2.2rem;
    }
}

.ohtpg_contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.ohtpg_contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ohtpg_contact-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.ohtpg_contact-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: ohtpg_contact-wave 8s ease-in-out infinite;
}

@keyframes ohtpg_contact-wave {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.ohtpg_contact-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ohtpg_contact-content h1 {
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: ohtpg_contact-typing 2s steps(20) 1s 1 normal both;
}

@keyframes ohtpg_contact-typing {
    from { width: 0; }
    to { width: 100%; }
}

.ohtpg_contact-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.ohtpg_contact-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ohtpg_contact-icons i {
    font-size: 2.5rem;
    color: #ffffff;
    animation: ohtpg_contact-pulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.4s);
}

@keyframes ohtpg_contact-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.ohtpg_contact-form-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.ohtpg_contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.ohtpg_contact-container h2 {
    font-family: 'Judson', serif;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.ohtpg_contact-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ohtpg_contact-form .ohtpg_form-group {
    margin-bottom: 1.5rem;
}

.ohtpg_contact-form .ohtpg_input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.ohtpg_contact-form .ohtpg_input-container i:first-child {
    position: absolute;
    left: 1rem;
    color: #f5576c;
    font-size: 1.2rem;
    z-index: 2;
}

.ohtpg_contact-form .ohtpg_form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.ohtpg_contact-form .ohtpg_form-input:focus {
    outline: none;
    border-color: #f5576c;
    box-shadow: 0 0 0 3px rgba(245, 87, 108, 0.1);
    transform: translateY(-2px);
}

.ohtpg_textarea-container {
    position: relative;
}

.ohtpg_textarea-container i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #f5576c;
    font-size: 1.2rem;
    z-index: 2;
}

.ohtpg_form-textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    resize: vertical;
    min-height: 120px;
    font-family: 'Oxygen', sans-serif;
}

.ohtpg_form-textarea:focus {
    outline: none;
    border-color: #f5576c;
    box-shadow: 0 0 0 3px rgba(245, 87, 108, 0.1);
    transform: translateY(-2px);
}

.ohtpg_contact-form .ohtpg_validation-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ohtpg_contact-form .ohtpg_validation-message.show {
    opacity: 1;
}

.ohtpg_contact-form .ohtpg_checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #4a5568;
    line-height: 1.4;
}

.ohtpg_contact-form .ohtpg_form-checkbox {
    display: none;
}

.ohtpg_contact-form .ohtpg_checkbox-checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ohtpg_contact-form .ohtpg_form-checkbox:checked + .ohtpg_checkbox-checkmark {
    background: #f5576c;
    border-color: #f5576c;
}

.ohtpg_contact-form .ohtpg_form-checkbox:checked + .ohtpg_checkbox-checkmark::after {
    content: '✓';
    color: #ffffff;
    font-size: 0.875rem;
}

.ohtpg_contact-form .ohtpg_checkbox-container a {
    color: #f5576c;
    text-decoration: none;
}

.ohtpg_contact-form .ohtpg_checkbox-container a:hover {
    text-decoration: underline;
}

.ohtpg_contact-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ohtpg_contact-button:enabled:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 87, 108, 0.4);
}

.ohtpg_contact-button:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ohtpg_contact-links {
    text-align: center;
    margin-top: 1.5rem;
}

.ohtpg_contact-links p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.ohtpg_contact-links a {
    color: #f5576c;
    text-decoration: none;
}

.ohtpg_contact-links a:hover {
    text-decoration: underline;
}

.ohtpg_password-modal-trigger {
    background: none;
    border: none;
    color: #f5576c;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ohtpg_password-modal-trigger:hover {
    color: #f093fb;
}

.ohtpg_contact-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.ohtpg_contact-success-overlay.active {
    display: flex;
    animation: ohtpg_contact-overlay-fade 0.5s ease;
}

@keyframes ohtpg_contact-overlay-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ohtpg_contact-success-dialog {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: ohtpg_contact-dialog-slide 0.5s ease;
}

@keyframes ohtpg_contact-dialog-slide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ohtpg_contact-success-dialog i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1rem;
    animation: ohtpg_contact-success-bounce 1s ease;
}

@keyframes ohtpg_contact-success-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.ohtpg_contact-success-dialog h3 {
    font-family: 'Judson', serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.ohtpg_contact-success-dialog p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ohtpg_contact-success-close {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ohtpg_contact-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.ohtpg_password-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.ohtpg_password-modal-overlay.active {
    display: flex;
    animation: ohtpg_modal-fade 0.3s ease;
}

@keyframes ohtpg_modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ohtpg_password-modal-dialog {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: ohtpg_modal-scale 0.3s ease;
}

@keyframes ohtpg_modal-scale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.ohtpg_password-modal-dialog i {
    font-size: 3rem;
    color: #f5576c;
    margin-bottom: 1rem;
}

.ohtpg_password-modal-dialog h3 {
    font-family: 'Judson', serif;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.ohtpg_password-modal-dialog p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.ohtpg_password-modal-dialog a {
    color: #f5576c;
    text-decoration: none;
    font-weight: 600;
}

.ohtpg_password-modal-dialog a:hover {
    text-decoration: underline;
}

.ohtpg_password-modal-close {
    background: #f5576c;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ohtpg_password-modal-close:hover {
    background: #f093fb;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ohtpg_contact-content h1 {
        font-size: 2.5rem;
    }
    
    .ohtpg_contact-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_contact-hero,
    .ohtpg_contact-form-section {
        padding: 0.3rem;
    }
    
    .ohtpg_contact-content h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_contact-content p {
        font-size: 0.8rem;
    }
    
    .ohtpg_contact-container {
        padding: 1.5rem;
    }
    
    .ohtpg_contact-container h2 {
        font-size: 1.5rem;
    }
    
    .ohtpg_contact-form .ohtpg_form-input,
    .ohtpg_form-textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.8rem;
    }
    
    .ohtpg_contact-success-dialog,
    .ohtpg_password-modal-dialog {
        padding: 2rem 0.3rem;
        margin: 0.3rem;
    }
    
    .ohtpg_contact-success-dialog h3 {
        font-size: 1.3rem;
    }
    
    .ohtpg_contact-success-dialog p {
        font-size: 0.8rem;
    }

    .ohtpg_password-modal-dialog a {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_contact-content h1 {
        font-size: 1.8rem;
    }
    
    .ohtpg_contact-container {
        padding: 1rem;
    }
    
    .ohtpg_contact-form .ohtpg_form-input,
    .ohtpg_form-textarea {
        padding: 0.6rem 0.6rem 0.6rem 2.2rem;
    }
}

.ohtpg_terms-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ohtpg_terms-header {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ohtpg_terms-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ohtpg_terms-container h1 {
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: ohtpg_terms-title-glow 3s ease-in-out infinite;
}

@keyframes ohtpg_terms-title-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.6); }
}

.ohtpg_terms-container p {
    color: #ffffff;
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.ohtpg_terms-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ohtpg_terms-icons i {
    font-size: 2.5rem;
    color: #ffffff;
    animation: ohtpg_terms-icon-float 4s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

@keyframes ohtpg_terms-icon-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(5deg); }
    66% { transform: translateY(5px) rotate(-5deg); }
}

.ohtpg_terms-content {
    padding: 4rem 2rem;
    background: #ffffff;
}

.ohtpg_terms-sections {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ohtpg_terms-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ohtpg_terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ohtpg_terms-section:hover::before {
    transform: scaleY(1);
}

.ohtpg_terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.ohtpg_section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ohtpg_section-header i {
    font-size: 2rem;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ohtpg_terms-section:hover .ohtpg_section-header i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.ohtpg_section-header h2 {
    font-family: 'Judson', serif;
    font-size: 1.8rem;
    color: #2d3748;
    margin: 0;
}

.ohtpg_section-content {
    color: #4a5568;
    line-height: 1.7;
}

.ohtpg_section-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.ohtpg_section-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ohtpg_terms-container h1 {
        font-size: 2.5rem;
    }
    
    .ohtpg_terms-section {
        padding: 2rem;
    }
    
    .ohtpg_section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .ohtpg_section-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_terms-header,
    .ohtpg_terms-content {
        padding: 0.3rem;
    }
    
    .ohtpg_terms-container h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_terms-container p {
        font-size: 0.9rem;
    }
    
    .ohtpg_terms-section {
        padding: 1.5rem;
    }
    
    .ohtpg_section-header h2 {
        font-size: 1.3rem;
    }
    
    .ohtpg_section-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_terms-container h1 {
        font-size: 1.8rem;
    }
    
    .ohtpg_terms-section {
        padding: 1rem;
    }
}

.ohtpg_privacy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.ohtpg_privacy-header {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.ohtpg_privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ohtpg_privacy-container h1 {
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: ohtpg_privacy-title-shimmer 4s ease-in-out infinite;
}

@keyframes ohtpg_privacy-title-shimmer {
    0%, 100% { 
        background: linear-gradient(45deg, #ffffff, #e0f7ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% { 
        background: linear-gradient(45deg, #e0f7ff, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.ohtpg_privacy-container p {
    color: #ffffff;
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.ohtpg_privacy-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ohtpg_privacy-icons i {
    font-size: 2.5rem;
    color: #ffffff;
    animation: ohtpg_privacy-icon-spin 6s linear infinite;
    animation-delay: calc(var(--i, 0) * 0.7s);
}

@keyframes ohtpg_privacy-icon-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.ohtpg_privacy-content {
    padding: 4rem 2rem;
    background: #ffffff;
}

.ohtpg_privacy-sections {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.ohtpg_privacy-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ohtpg_privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ohtpg_privacy-section:hover::before {
    transform: scaleX(1);
}

.ohtpg_privacy-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.15);
}

.ohtpg_privacy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ohtpg_privacy-header i {
    font-size: 2rem;
    color: #4facfe;
    background: rgba(79, 172, 254, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.ohtpg_privacy-section:hover .ohtpg_privacy-header i {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
}

.ohtpg_privacy-header h2 {
    font-family: 'Judson', serif;
    font-size: 1.6rem;
    color: #2d3748;
    margin: 0;
}

.ohtpg_privacy-content {
    color: #4a5568;
    line-height: 1.7;
}

.ohtpg_privacy-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.ohtpg_privacy-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ohtpg_privacy-container h1 {
        font-size: 2.5rem;
    }
    
    .ohtpg_privacy-sections {
        grid-template-columns: 1fr;
    }
    
    .ohtpg_privacy-section {
        padding: 2rem;
    }
    
    .ohtpg_privacy-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .ohtpg_privacy-header h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_privacy-header,
    .ohtpg_privacy-content {
        padding: 0.3rem;
    }
    
    .ohtpg_privacy-container h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_privacy-container p {
        font-size: 0.9rem;
    }
    
    .ohtpg_privacy-section {
        padding: 1.5rem;
    }
    
    .ohtpg_privacy-header h2 {
        font-size: 1.2rem;
    }
    
    .ohtpg_privacy-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_privacy-container h1 {
        font-size: 1.8rem;
    }
    
    .ohtpg_privacy-section {
        padding: 1rem;
    }
}

.ohtpg_responsible-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.ohtpg_responsible-header {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.ohtpg_responsible-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ohtpg_responsible-container h1 {
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: ohtpg_responsible-title-pulse 3s ease-in-out infinite;
}

@keyframes ohtpg_responsible-title-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ohtpg_responsible-container p {
    color: #ffffff;
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.ohtpg_responsible-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ohtpg_responsible-icons i {
    font-size: 2.5rem;
    color: #ffffff;
    animation: ohtpg_responsible-icon-bounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

@keyframes ohtpg_responsible-icon-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.ohtpg_responsible-content {
    padding: 4rem 2rem;
    background: #ffffff;
}

.ohtpg_responsible-sections {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.ohtpg_responsible-section {
    background: #f8fafc;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ohtpg_responsible-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ohtpg_responsible-section:hover::before {
    opacity: 1;
}

.ohtpg_responsible-section:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(245, 87, 108, 0.2);
}

.ohtpg_responsible-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ohtpg_responsible-header i {
    font-size: 2.2rem;
    color: #f5576c;
    background: rgba(245, 87, 108, 0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.ohtpg_responsible-section:hover .ohtpg_responsible-header i {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.ohtpg_responsible-header h2 {
    font-family: 'Judson', serif;
    font-size: 1.7rem;
    color: #2d3748;
    margin: 0;
}

.ohtpg_responsible-content {
    color: #4a5568;
    line-height: 1.7;
}

.ohtpg_responsible-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.ohtpg_responsible-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ohtpg_responsible-container h1 {
        font-size: 2.5rem;
    }
    
    .ohtpg_responsible-sections {
        grid-template-columns: 1fr;
    }
    
    .ohtpg_responsible-section {
        padding: 2rem;
    }
    
    .ohtpg_responsible-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .ohtpg_responsible-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_responsible-header,
    .ohtpg_responsible-content {
        padding: 0.3rem;
    }
    
    .ohtpg_responsible-container h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_responsible-container p {
        font-size: 0.9rem;
    }
    
    .ohtpg_responsible-section {
        padding: 1.5rem;
    }
    
    .ohtpg_responsible-header h2 {
        font-size: 1.3rem;
    }
    
    .ohtpg_responsible-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_responsible-container h1 {
        font-size: 1.8rem;
    }
    
    .ohtpg_responsible-section {
        padding: 1rem;
    }
}

.ohtpg_cookies-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.ohtpg_cookies-header {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.ohtpg_cookies-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ohtpg_cookies-container h1 {
    font-family: 'Judson', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    animation: ohtpg_cookies-title-color 5s ease-in-out infinite;
}

@keyframes ohtpg_cookies-title-color {
    0%, 100% { color: #2d3748; }
    25% { color: #4a5568; }
    50% { color: #718096; }
    75% { color: #4a5568; }
}

.ohtpg_cookies-container p {
    color: #4a5568;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.ohtpg_cookies-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ohtpg_cookies-icons i {
    font-size: 2.5rem;
    color: #2d3748;
    animation: ohtpg_cookies-icon-float 4s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.6s);
}

@keyframes ohtpg_cookies-icon-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(3deg); }
}

.ohtpg_cookies-content {
    padding: 4rem 2rem;
    background: #ffffff;
}

.ohtpg_cookies-sections {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.ohtpg_cookies-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ohtpg_cookies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.ohtpg_cookies-section:hover::before {
    opacity: 0.1;
}

.ohtpg_cookies-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(168, 237, 234, 0.3);
}

.ohtpg_cookies-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ohtpg_cookies-header i {
    font-size: 2rem;
    color: #a8edea;
    background: rgba(168, 237, 234, 0.2);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.ohtpg_cookies-section:hover .ohtpg_cookies-header i {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #ffffff;
}

.ohtpg_cookies-header h2 {
    font-family: 'Judson', serif;
    font-size: 1.6rem;
    color: #2d3748;
    margin: 0;
}

.ohtpg_cookies-content {
    color: #4a5568;
    line-height: 1.7;
}

.ohtpg_cookies-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.ohtpg_cookies-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ohtpg_cookies-container h1 {
        font-size: 2.5rem;
    }
    
    .ohtpg_cookies-sections {
        grid-template-columns: 1fr;
    }
    
    .ohtpg_cookies-section {
        padding: 2rem;
    }
    
    .ohtpg_cookies-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .ohtpg_cookies-header h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_cookies-header,
    .ohtpg_cookies-content {
        padding: 0.3rem;
    }
    
    .ohtpg_cookies-container h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_cookies-container p {
        font-size: 0.9rem;
    }
    
    .ohtpg_cookies-section {
        padding: 1.5rem;
    }
    
    .ohtpg_cookies-header h2 {
        font-size: 1.2rem;
    }
    
    .ohtpg_cookies-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_cookies-container h1 {
        font-size: 1.8rem;
    }
    
    .ohtpg_cookies-section {
        padding: 1rem;
    }
}

.ohtpg_404-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    background-size: 400% 400%;
    animation: ohtpg_404-gradient-shift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes ohtpg_404-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ohtpg_404-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.ohtpg_404-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: ohtpg_404-content-float 6s ease-in-out infinite;
}

@keyframes ohtpg_404-content-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.ohtpg_404-animation {
    position: relative;
    margin-bottom: 2rem;
}

.ohtpg_404-animation i {
    font-size: 8rem;
    color: #ff6b6b;
    animation: ohtpg_404-icon-pulse 2s ease-in-out infinite;
}

@keyframes ohtpg_404-icon-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% { 
        transform: scale(1.1) rotate(-5deg);
        opacity: 0.8;
    }
    75% { 
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

.ohtpg_404-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Judson', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 107, 107, 0.3);
    animation: ohtpg_404-number-glitch 3s ease-in-out infinite;
}

@keyframes ohtpg_404-number-glitch {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.5;
    }
}

.ohtpg_404-content h1 {
    font-family: 'Judson', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    animation: ohtpg_404-title-shake 4s ease-in-out infinite;
}

@keyframes ohtpg_404-title-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.ohtpg_404-message {
    margin-bottom: 3rem;
}

.ohtpg_404-message p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ohtpg_404-message p:last-child {
    margin-bottom: 0;
}

.ohtpg_404-actions {
    margin-bottom: 2rem;
}

.ohtpg_404-home-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s ease;
    animation: ohtpg_404-button-glow 2s ease-in-out infinite;
}

@keyframes ohtpg_404-button-glow {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    }
    50% { 
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
    }
}

.ohtpg_404-home-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.8);
}

.ohtpg_404-support {
    margin-top: 1.5rem;
}

.ohtpg_404-support p {
    color: #666;
    font-size: 0.95rem;
}

.ohtpg_404-support a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.ohtpg_404-support a:hover {
    text-decoration: underline;
}

.ohtpg_404-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.ohtpg_404-icons i {
    font-size: 2rem;
    color: #ff6b6b;
    animation: ohtpg_404-icons-spin 4s linear infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

@keyframes ohtpg_404-icons-spin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@media (max-width: 768px) {
    .ohtpg_404-content {
        padding: 3rem 2rem;
    }
    
    .ohtpg_404-animation i {
        font-size: 6rem;
    }
    
    .ohtpg_404-number {
        font-size: 3rem;
    }
    
    .ohtpg_404-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ohtpg_404-page {
        padding: 0.3rem;
    }
    
    .ohtpg_404-content {
        padding: 2rem 1.5rem;
    }
    
    .ohtpg_404-animation i {
        font-size: 5rem;
    }
    
    .ohtpg_404-number {
        font-size: 2.5rem;
    }
    
    .ohtpg_404-content h1 {
        font-size: 1.8rem;
        font-size: 0.9rem;
    }
    
    .ohtpg_404-message p {
        font-size: 0.9rem;
    }
    
    .ohtpg_404-home-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .ohtpg_404-support p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .ohtpg_404-content {
        padding: 1.5rem 1rem;
    }
    
    .ohtpg_404-animation i {
        font-size: 4rem;
    }
    
    .ohtpg_404-number {
        font-size: 2rem;
    }
    
    .ohtpg_404-content h1 {
        font-size: 1.6rem;
    }
    
    .ohtpg_404-home-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}