/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2f1a;
    --secondary-color: #0f1f0f;
    --accent-color: #d4af37;
    --mystery-green: #2d4a2d;
    --dark-green: #1a3a1a;
    --deep-forest: #0a1a0a;
    --text-dark: #0f1f0f;
    --text-light: #666666;
    --text-gold: #d4af37;
    --background-dark: #1a2f1a;
    --background-darker: #0f1f0f;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gradient: linear-gradient(135deg, #0f1f0f 0%, #1a3a1a 50%, #1a2f1a 100%);
    --gradient-hover: linear-gradient(135deg, #1a3a1a 0%, #2d4a2d 50%, #0f1f0f 100%);
    --mystery-gradient: linear-gradient(135deg, #1a2f1a 0%, #1a3a1a 50%, #0a1a0a 100%);
    --shadow: 0 15px 35px rgba(10, 26, 10, 0.6);
    --shadow-hover: 0 20px 50px rgba(10, 26, 10, 0.8);
    --glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --mystery-glow: 0 0 30px rgba(45, 74, 45, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--off-white);
    overflow-x: hidden;
    background: var(--background-darker);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 31, 15, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(10, 26, 10, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--text-gold);
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4);
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.4),
            0 0 30px rgba(212, 175, 55, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 25px rgba(212, 175, 55, 0.6),
            0 0 50px rgba(212, 175, 55, 0.3);
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--off-white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.nav-link:hover {
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--text-gold), var(--mystery-green));
    transition: width 0.3s ease;
    box-shadow: var(--glow);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--mystery-gradient);
    color: var(--off-white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 74, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 26, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: mystical-movement 20s ease-in-out infinite;
}

@keyframes mystical-movement {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(5px) translateY(-5px) rotate(1deg); }
    50% { transform: translateX(-5px) translateY(5px) rotate(-1deg); }
    75% { transform: translateX(5px) translateY(5px) rotate(0.5deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.gradient-text {
    background: linear-gradient(45deg, var(--text-gold), var(--mystery-green), var(--text-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #cccccc;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    background: rgba(26, 26, 26, 0.6);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gold);
    text-shadow: var(--glow);
    animation: number-glow 2s ease-in-out infinite;
}

@keyframes number-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); }
    50% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.9); }
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #cccccc;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--mystery-gradient);
    color: var(--off-white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--text-gold);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--mystery-green);
    text-shadow: var(--glow);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.treasure-map {
    width: 300px;
    height: 300px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--text-gold);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(15px);
    border: 3px solid var(--mystery-green);
    box-shadow: 
        var(--mystery-glow),
        inset 0 0 30px rgba(45, 74, 45, 0.3);
    position: relative;
}

.treasure-map::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(var(--text-gold), var(--mystery-green), var(--deep-forest), var(--text-gold));
    z-index: -1;
    animation: rotate-border 4s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--text-gold);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3),
        inset 0 0 30px rgba(45, 74, 45, 0.3);
    transition: all 0.3s ease;
}

.treasure-map:hover .hero-logo {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.8),
        0 0 80px rgba(212, 175, 55, 0.4),
        inset 0 0 40px rgba(45, 74, 45, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--background-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(45, 74, 45, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(10, 26, 10, 0.05) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-gold);
    text-shadow: var(--glow);
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature {
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--mystery-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--mystery-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-gold);
    box-shadow: var(--mystery-glow);
    border: 2px solid var(--mystery-green);
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.feature p {
    color: #cccccc;
    line-height: 1.6;
}

.event-details {
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.event-details h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: rgba(26, 58, 26, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(45, 74, 45, 0.3);
}

.detail i {
    color: var(--text-gold);
    font-size: 1.2rem;
    min-width: 20px;
    text-shadow: var(--glow);
}

/* Registration Section */
.register {
    padding: 80px 0;
    background: var(--background-darker);
    position: relative;
}

.register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(10, 26, 10, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(45, 74, 45, 0.08) 0%, transparent 50%);
}

.register-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.form-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(26, 58, 26, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(45, 74, 45, 0.3);
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-gold);
    border-bottom: 2px solid var(--mystery-green);
    padding-bottom: 0.5rem;
    text-shadow: var(--glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
    text-shadow: var(--glow);
}

.field-help {
    display: block;
    color: rgba(204, 204, 204, 0.8);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--off-white);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(45, 74, 45, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(26, 47, 26, 0.8);
    color: var(--off-white);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-gold);
    box-shadow: var(--glow);
    background: rgba(26, 47, 26, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(204, 204, 204, 0.6);
    font-style: italic;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(212, 175, 55, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
    accent-color: var(--text-gold);
}

.submit-button {
    width: 100%;
    background: var(--mystery-gradient);
    color: var(--off-white);
    border: 2px solid var(--text-gold);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--mystery-green);
    text-shadow: var(--glow);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--off-white);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
    max-width: 400px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--mystery-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--mystery-green);
    box-shadow: var(--mystery-glow);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--text-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 58, 26, 0.5);
    color: #cccccc;
}

.disclaimer {
    background: linear-gradient(135deg, #1a3a1a, #2d4a2d);
    border: 2px solid var(--text-gold);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--glow);
    animation: pulse-border 3s ease-in-out infinite;
}

.disclaimer p {
    color: var(--off-white);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.disclaimer p:first-child {
    color: var(--text-gold);
    font-size: 1.1rem;
    text-shadow: var(--glow);
    margin-bottom: 1rem;
}

.disclaimer strong {
    color: var(--text-gold);
    text-shadow: var(--glow);
}

@keyframes pulse-border {
    0%, 100% { 
        border-color: var(--text-gold);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% { 
        border-color: var(--mystery-green);
        box-shadow: 0 0 30px rgba(45, 74, 45, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 

.challenge-info {
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid var(--text-gold);
    box-shadow: var(--glow);
    position: relative;
    z-index: 2;
}

.challenge-info h3 {
    color: var(--text-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: var(--glow);
}

.challenge-info p {
    color: var(--off-white);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.challenge-info strong {
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.survival-details {
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.survival-details h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-gold);
    text-shadow: var(--glow);
}

.survival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.survival-item {
    background: rgba(26, 58, 26, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(45, 74, 45, 0.4);
    transition: all 0.3s ease;
}

.survival-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.survival-item i {
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 1rem;
    text-shadow: var(--glow);
}

.survival-item h4 {
    color: var(--text-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: var(--glow);
}

.survival-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Nuovi stili per la sezione sopravvivenza professionale */
.survival-section {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    overflow: hidden;
    margin-top: 4rem;
    box-shadow: 
        var(--shadow),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
}

.survival-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 74, 45, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.survival-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, var(--dark-green), var(--mystery-green));
    border-bottom: 2px solid var(--text-gold);
    position: relative;
}

.survival-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.survival-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.9);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.survival-main {
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
}

.survival-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(45, 74, 45, 0.15));
    border: 2px solid var(--text-gold);
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.survival-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.highlight-icon {
    font-size: 4rem;
    color: var(--text-gold);
    text-shadow: var(--glow);
    animation: pulse-glow 2s ease-in-out infinite;
    padding: 0 1rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 1rem;
    text-shadow: var(--glow);
}

.highlight-content p {
    font-size: 1.1rem;
    color: var(--off-white);
    line-height: 1.7;
    margin: 0;
}

.survival-features {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    background: rgba(15, 31, 15, 0.3);
}

.feature-item {
    background: linear-gradient(145deg, rgba(26, 47, 26, 0.8), rgba(15, 31, 15, 0.8));
    border: 1px solid rgba(45, 74, 45, 0.4);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--text-gold);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(212, 175, 55, 0.2);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, var(--text-gold), #e6a830);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gold);
    margin-bottom: 0.8rem;
    text-shadow: var(--glow);
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(204, 204, 204, 0.95);
    line-height: 1.6;
    margin: 0;
}

.survival-footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-color));
    padding: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-quote {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--off-white);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.footer-quote i {
    color: var(--text-gold);
    font-size: 1.5rem;
    opacity: 0.7;
}

.footer-quote span {
    display: inline-block;
    margin: 0 1rem;
    line-height: 1.8;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .survival-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .survival-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .survival-header h3 {
        font-size: 1.8rem;
    }
}

/* GDPR Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(13, 13, 23, 0.98));
    backdrop-filter: blur(15px);
    border-top: 2px solid #8b5cf6;
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-text h4 {
    color: #8b5cf6;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    color: #b8b8d1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
} 