/* Advertising Consent Styles - Based on MLM Revolution 10.0 Design */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonShimmer {
    0% {
        transform: translateX(-100%) scaleX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(0%) scaleX(1);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scaleX(0);
        opacity: 0.8;
    }
}

@keyframes gradientPulse {
    0%, 100% {
        background-size: 100% 100%;
        opacity: 1;
    }
    50% {
        background-size: 120% 120%;
        opacity: 0.9;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animate-visible {
    opacity: 1;
    transform: scale(1);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* Enhanced hover effects for interactive elements */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.burger-nav-link {
    position: relative;
    overflow: hidden;
}

.burger-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.3), transparent);
    transition: left 0.5s;
}

.burger-nav-link:hover::before {
    left: 100%;
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFF7ED;
    color: #2F2D2E;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 100px 20px 50px 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    max-width: 1420px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-container {
    width: 120px;
    height: 58px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.logo {
    width: 40px;
    height: 35px;
}

.header-right {
    display: flex;
    align-items: center;
}

.nav-container {
    height: 58px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #2F2D2E;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Burger Menu */
.burger-menu {
    position: relative;
    display: none;
}

.burger-button {
    width: 58px;
    height: 58px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.burger-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.burger-line {
    width: 24px;
    height: 2px;
    background-color: #2F2D2E;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.burger-button.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-button.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-button.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.burger-nav {
    position: absolute;
    top: 90px;
    right: 0;
    width: 320px;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.burger-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.burger-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #2F2D2E;
    text-decoration: none;
    line-height: 1.2;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.burger-nav-link:last-child {
    border-bottom: none;
}

.burger-nav-link:hover {
    background-color: rgba(33, 150, 243, 0.12);
    color: #2196F3;
    padding-left: 35px;
}

/* Advertising Consent Content */
.advertising-consent-content {
    margin-top: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.advertising-consent-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 48%, #90CAF9 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.advertising-consent-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(33, 150, 243, 0.1) 0%,
        rgba(100, 181, 246, 0.2) 25%,
        rgba(144, 202, 249, 0.1) 50%,
        rgba(100, 181, 246, 0.2) 75%,
        rgba(33, 150, 243, 0.1) 100%);
    border-radius: 15px;
    animation: gentleShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gentleShimmer {
    0% {
        opacity: 0.1;
        transform: translateX(-3px) scale(1);
    }
    25% {
        opacity: 0.2;
        transform: translateX(2px) scale(1.01);
    }
    50% {
        opacity: 0.15;
        transform: translateX(3px) scale(1);
    }
    75% {
        opacity: 0.2;
        transform: translateX(2px) scale(1.01);
    }
    100% {
        opacity: 0.1;
        transform: translateX(-3px) scale(1);
    }
}

.advertising-consent-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #2F2D2E, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advertising-consent-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.advertising-consent-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advertising-consent-section {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advertising-consent-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(33, 150, 243, 0.2);
}

.advertising-consent-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(33, 150, 243, 0.02) 0%,
        rgba(100, 181, 246, 0.02) 50%,
        rgba(144, 202, 249, 0.02) 100%);
    border-radius: 15px;
    pointer-events: none;
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin-bottom: 20px;
}

.subsection {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.subsection:hover {
    border-left-color: #2196F3;
    background-color: rgba(33, 150, 243, 0.05);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-left: -20px;
}

.subsection p {
    margin-bottom: 15px;
}

.content-link {
    color: #2196F3;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.content-link:hover {
    color: #FF7C5C;
    border-bottom-color: #FF7C5C;
    background-color: rgba(255, 124, 92, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Organization Info Section */
.organization-info {
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 48%, #90CAF9 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.org-card {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.org-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #2F2D2E;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #2F2D2E, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.org-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.org-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.org-row:last-child {
    border-bottom: none;
}

.org-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    opacity: 0.8;
    min-width: 200px;
}

.org-value {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    text-align: right;
    flex: 1;
}

/* Footer */
.footer {
    margin-top: 80px;
}

.footer-content {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2F2D2E;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .advertising-consent-title {
        font-size: 44px;
    }

    .advertising-consent-section {
        padding: 35px;
    }

    .section-content p {
        font-size: 17px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .advertising-consent-title {
        font-size: 40px;
    }

    .advertising-consent-section {
        padding: 30px;
    }

    .section-content p {
        font-size: 16px;
    }

    .footer-links {
        gap: 35px;
    }

    .footer-link {
        font-size: 15px;
    }
}

@media (max-width: 1000px) {
    .advertising-consent-content {
        margin-top: 80px;
    }

    .advertising-consent-header {
        padding: 35px;
        margin-bottom: 50px;
    }

    .advertising-consent-title {
        font-size: 36px;
    }

    .advertising-consent-description {
        font-size: 17px;
    }

    .advertising-consent-sections {
        gap: 35px;
    }

    .advertising-consent-section {
        padding: 25px;
    }

    .section-content p {
        font-size: 16px;
    }

    .subsection {
        margin-bottom: 20px;
        padding-left: 15px;
    }

    /* Show burger menu and hide regular nav on mobile */
    .nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 35px;
    }

    .footer-links {
        gap: 25px;
        justify-content: center;
    }

    .footer-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .advertising-consent-content {
        margin-top: 60px;
    }

    .advertising-consent-header {
        padding: 30px;
        margin-bottom: 40px;
    }

    .advertising-consent-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .advertising-consent-description {
        font-size: 16px;
    }

    .advertising-consent-sections {
        gap: 30px;
    }

    .advertising-consent-section {
        padding: 20px;
    }

    .section-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .subsection {
        margin-bottom: 18px;
        padding-left: 12px;
    }

    .footer {
        margin-top: 60px;
    }

    .footer-content {
        padding: 30px;
        gap: 25px;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
    }

    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 80px 15px 40px 15px;
    }

    .advertising-consent-content {
        margin-top: 50px;
    }

    .advertising-consent-header {
        padding: 25px;
        margin-bottom: 35px;
    }

    .advertising-consent-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .advertising-consent-description {
        font-size: 15px;
    }

    .advertising-consent-sections {
        gap: 25px;
    }

    .advertising-consent-section {
        padding: 18px;
    }

    .section-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .subsection {
        margin-bottom: 15px;
        padding-left: 10px;
    }

    .footer {
        margin-top: 50px;
    }

    .footer-content {
        padding: 25px;
        gap: 20px;
    }

    .footer-text {
        font-size: 16px;
        text-align: center;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 70px 10px 30px 10px;
    }

    .advertising-consent-content {
        margin-top: 40px;
    }

    .advertising-consent-header {
        padding: 20px;
        margin-bottom: 30px;
    }

    .advertising-consent-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .advertising-consent-description {
        font-size: 14px;
    }

    .advertising-consent-sections {
        gap: 20px;
    }

    .advertising-consent-section {
        padding: 15px;
    }

    .section-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .subsection {
        margin-bottom: 12px;
        padding-left: 8px;
    }

    .footer {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .footer-content {
        padding: 20px;
        gap: 18px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-link {
        font-size: 11px;
        max-width: 280px;
    }

    .org-row {
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .org-label {
        min-width: auto;
        opacity: 1;
        font-weight: 600;
    }

    .org-value {
        text-align: left;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .advertising-consent-header {
        padding: 15px;
        margin-bottom: 25px;
    }

    .advertising-consent-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .advertising-consent-description {
        font-size: 13px;
    }

    .advertising-consent-sections {
        gap: 18px;
    }

    .advertising-consent-section {
        padding: 12px;
    }

    .section-content p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .subsection {
        margin-bottom: 10px;
        padding-left: 6px;
    }

    .footer-content {
        padding: 15px;
        gap: 15px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-link {
        font-size: 10px;
    }

    .org-card {
        padding: 20px;
    }

    .org-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .org-label {
        font-size: 14px;
    }

    .org-value {
        font-size: 13px;
    }
}

/* Burger menu responsive styles for tablets */
@media (max-width: 768px) {
    .burger-nav {
        width: 280px;
        top: 85px;
    }

    .burger-nav-link {
        padding: 22px 25px;
        font-size: 20px;
    }
}

/* Burger menu responsive styles for small mobile */
@media (max-width: 600px) {
    .burger-nav {
        width: 260px;
        top: 80px;
    }

    .burger-nav-link {
        padding: 20px 22px;
        font-size: 18px;
    }
}

/* Burger menu responsive styles for extra small mobile */
@media (max-width: 480px) {
    .burger-nav {
        width: 240px;
        top: 75px;
    }

    .burger-nav-link {
        padding: 18px 20px;
        font-size: 16px;
    }
}

/* Burger menu responsive styles for very small mobile */
@media (max-width: 360px) {
    .burger-nav {
        width: 220px;
        top: 70px;
    }

    .burger-nav-link {
        padding: 16px 18px;
        font-size: 15px;
    }
}
