* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --europe-blue: #003399;
    --europe-blue-light: #0066CC;
    --europe-gold: #FFCC00;
    --highlight-color: #e94560;
    --text-color: #ffffff;
    --text-secondary: #b8b8b8;
    --gradient-start: #003399;
    --gradient-end: #0066CC;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 51, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    text-align: center;
    margin-bottom: 50px;
}

.europe-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.flag {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.flag-germany { animation-delay: 0s; }
.flag-france { animation-delay: 0.2s; }
.flag-netherlands { animation-delay: 0.4s; }
.flag-uk { animation-delay: 0.6s; }
.flag-spain { animation-delay: 0.8s; }
.flag-italy { animation-delay: 1s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--europe-blue), var(--europe-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-content {
    text-align: center;
}

.welcome-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.welcome-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.countries-section {
    margin-bottom: 50px;
}

.countries-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 600;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.country-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.country-item:nth-child(1) { animation-delay: 0.1s; }
.country-item:nth-child(2) { animation-delay: 0.2s; }
.country-item:nth-child(3) { animation-delay: 0.3s; }
.country-item:nth-child(4) { animation-delay: 0.4s; }
.country-item:nth-child(5) { animation-delay: 0.5s; }
.country-item:nth-child(6) { animation-delay: 0.6s; }

.country-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 51, 153, 0.1);
    border-color: var(--europe-blue);
    box-shadow: 0 10px 30px rgba(0, 51, 153, 0.2);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 10px;
}

.country-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.country-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.85rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 51, 153, 0.1);
    border-color: var(--europe-blue);
    box-shadow: 0 10px 30px rgba(0, 51, 153, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.redirect-info {
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 51, 153, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 51, 153, 0.3);
}

.redirect-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.countdown {
    font-weight: 700;
    color: var(--europe-blue-light);
    font-size: 1.3rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--europe-blue), var(--europe-blue-light));
    width: 0%;
    border-radius: 10px;
    animation: progressAnimation 2.5s linear forwards;
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--europe-blue), var(--europe-blue-light));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 51, 153, 0.3);
    margin-top: 20px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 51, 153, 0.4);
    background: linear-gradient(135deg, var(--europe-blue-light), var(--europe-blue));
}

.cta-button:active {
    transform: translateY(-1px);
}

.footer {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px 20px 0 0;
    color: var(--text-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 40px 40px;
    margin-bottom: 30px;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }
.footer-section:nth-child(6) { animation-delay: 0.6s; }

.footer-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--europe-blue), var(--europe-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-heading {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--europe-blue), var(--europe-blue-light));
    border-radius: 2px;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li,
.footer-contact-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-links-list a,
.footer-contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links-list a::before,
.footer-contact-list a::before {
    content: '→';
    opacity: 0;
    position: absolute;
    left: -15px;
    transition: all 0.3s ease;
    color: var(--europe-blue-light);
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
    color: var(--europe-blue-light);
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-links-list a:hover::before,
.footer-contact-list a:hover::before {
    opacity: 1;
    left: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--europe-blue), var(--europe-blue-light));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 51, 153, 0.3);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--europe-blue-light);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-seo-text {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    text-align: justify;
}

.footer-seo-text strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }
    
    .europe-flags {
        gap: 10px;
    }
    
    .flag {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 25px 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-seo-text {
        font-size: 0.8rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .europe-flags {
        gap: 8px;
    }
    
    .flag {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .country-item {
        padding: 20px 15px;
    }
    
    .country-flag {
        font-size: 2.5rem;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .footer {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .footer-content {
        padding: 0 20px 25px;
        gap: 25px;
    }
    
    .footer-bottom {
        padding: 25px 20px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

