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

:root {
    --primary-color: orange;
    --secondary-color: #0A1628;
    --accent-blue: #1E3A5F;
    --accent-red: #8B1538;
    --text-color: #F5F5F0;
    --text-muted: #C4C4B8;
    --hover-color: #E8C547;
    --gradient-dark: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(30, 58, 95, 0.85) 100%);
    --gradient-french: linear-gradient(135deg, #1E3A5F 0%, #8B1538 50%, #D4AF37 100%);
}

body {
    font-family: 'Garamond', 'Georgia', 'Times New Roman', serif;
    background: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 21, 56, 0.06) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.7;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 30px;
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-color);
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.15) 0%, rgba(139, 21, 56, 0.1) 100%);
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(15px);
    font-style: italic;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.logo-container {
    text-align: center;
    padding: 40px 20px 20px;
    background: var(--gradient-dark);
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    /*        letter-spacing: 3px;
        background: linear-gradient(135deg, #D4AF37 0%, #E8C547 30%, #D4AF37 60%, #C19A2E 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-transform: uppercase;
        display: inline-block;
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 10px rgba(30, 58, 95, 0.3));
        min-height: 80px;*/
    line-height: 1.2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.logo .icon {
    color: orange;
}

.logo img {
    width: 300px;
    max-width: 80%;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.cta-button {
    display: inline-block;
    margin: 30px auto;
    padding: 18px 55px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #D4AF37 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Georgia', serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(139, 21, 56, 0.2) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    will-change: width, height;
}

.cta-button:hover::before {
    width: 100%;
    height: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5), 0 0 20px rgba(30, 58, 95, 0.3);
    background: linear-gradient(135deg, #E8C547 0%, #D4AF37 50%, #E8C547 100%);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

header {
    position: relative;
    text-align: center;
    padding: 60px 20px 80px;
    background: var(--gradient-dark);
    border-bottom: 2px solid var(--primary-color);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    z-index: 10;
    min-height: 400px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

header p {
    max-width: 1200px;
    margin: auto;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent),
        linear-gradient(180deg, rgba(30, 58, 95, 0.1) 0%, transparent 100%);
    opacity: 0.6;
    will-change: opacity;
}

h1 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    position: relative;
    z-index: 1;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    min-height: 80px;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

header img {
    max-width: 100%;
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    margin: 30px auto 0;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 5;
}

header img:hover {
    transform: scale(1.02);
}

header .cta-button {
    margin: 30px auto 20px;
    display: inline-block;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
}

h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
    position: relative;
    padding-left: 25px;
    font-family: 'Georgia', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 85%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-red) 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

a:hover {
    color: var(--hover-color);
}

ul,
ol {
    list-style: none;
    margin: 30px 0;
}

ul li {
    padding: 22px 25px;
    margin: 15px 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(139, 21, 56, 0.05) 100%);
    border-left: 3px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

ul li:hover {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.15) 0%, rgba(139, 21, 56, 0.1) 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    border-left-color: var(--hover-color);
}

ul li strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(139, 21, 56, 0.08) 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

th {
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(139, 21, 56, 0.3) 100%);
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-muted);
}

tr:hover td {
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-color);
}

tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    header {
        padding: 40px 15px 40px;
    }

    main {
        padding: 40px 15px;
    }

    .intro-text {
        font-size: 1rem;
        padding: 20px 15px;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.fixed-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.fixed-cta .cta-button {
    margin: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 8px 25px rgba(212, 175, 55, 0.35);
}

.movie-reel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    z-index: 9999;
    opacity: 0;
}

footer {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(30, 58, 95, 0.98) 100%);
    padding: 50px 30px 100px;
    text-align: center;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 21, 56, 0.08) 0%, transparent 50%);
    z-index: 0;
}

footer p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    font-style: italic;
    padding: 20px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

blockquote {
    margin: 30px auto;
    padding: 25px 30px;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2) 0%, rgba(139, 21, 56, 0.15) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-color);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}