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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

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

.nav-brand .logo {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    gap: 0.5rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fde68a;
}

.btn-login {
    background-color: #fbbf24;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #2563eb;
}


/* Main Content Styles */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
}

.main-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.announcement-badge {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-badge::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4));
    border-radius: 0 25px 25px 0;
}

.badge-new {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.main-heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    background: linear-gradient(90deg, #fde68a, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.subtitle-text {
    color: #ffffff;
    font-weight: 400;
}

.subtitle-link {
    color: #fde68a;
    text-decoration: underline;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.subtitle-link:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.subtitle-highlight {
    color: #22c55e;
    font-weight: 600;
}

.guide-button-container {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

.guide-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: 1px solid #3a3a3a;
}

.guide-button:hover {
    background-color: #fbbf24;
    border-color: #fbbf24;
    color: #000000;
}

.cv-button-container {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

.cv-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: 1px solid #3a3a3a;
}

.cv-button:hover {
    background-color: #2a2a2a;
    border-color: #fbbf24;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    padding: 3rem 0 2rem;
    margin-top: auto;
    border-radius: 20px 20px 0 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo-icon {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.footer-brand .logo-text {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.tagline {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #3a3a3a;
}

.social-icon.email:hover {
    background-color: #fbbf24;
    color: #000000;
}

.social-icon.phone:hover {
    background-color: #fbbf24;
    color: #000000;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
}

.social-icon.discord:hover {
    background-color: #5865f2;
}

.footer-divider {
    width: 1px;
    height: 60px;
    background-color: #3a3a3a;
    opacity: 0.5;
    align-self: center;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

/* Impressum & Datenschutz Styles */
.impressum-content,
.datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.impressum-section,
.datenschutz-section {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.impressum-section:hover,
.datenschutz-section:hover {
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.impressum-section h2,
.datenschutz-section h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fde68a, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impressum-section h3,
.datenschutz-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.impressum-section p,
.datenschutz-section p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.impressum-section strong,
.datenschutz-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .impressum-section,
    .datenschutz-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .impressum-section h2,
    .datenschutz-section h2 {
        font-size: 1.3rem;
    }
    
    .impressum-section h3,
    .datenschutz-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .impressum-section,
    .datenschutz-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .impressum-section h2,
    .datenschutz-section h2 {
        font-size: 1.2rem;
    }
}

/* Feedback Submit Section */
.feedback-submit-section {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.feedback-submit-section:hover {
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.submit-button-container {
    margin-top: 1.5rem;
    text-align: center;
}

.submit-button {
    display: inline-block;
    background-color: #fbbf24;
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #fbbf24;
}

.submit-button:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
}

/* Feedback Form Styles */
/* Feedback Form Page Specific Styles */
body.feedback-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.feedback-page .main-content {
    flex: 1;
}

.feedback-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    min-height: 60vh;
}

.feedback-form-section,
.feedback-info-section {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.feedback-form-section:hover,
.feedback-info-section:hover {
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.required-notice {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.required-text {
    color: #dc2626;
    font-weight: 500;
    font-size: 0.9rem;
}

.feedback-form {
    margin-top: 1rem;
}

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

.form-label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #fbbf24;
}

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

.rating-container {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.5rem;
    justify-content: center;
    flex-direction: row-reverse;
}

.rating-container input[type="radio"] {
    display: none;
}

.star {
    font-size: 2rem;
    color: #3a3a3a;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star:hover,
.star:hover ~ .star {
    color: #fbbf24;
    transform: scale(1.1);
}

.rating-container input[type="radio"]:checked ~ .star {
    color: #fbbf24;
}

.rating-container input[type="radio"]:checked + .star {
    color: #fbbf24;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #fde68a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fbbf24;
}

/* Responsive Design for Feedback Form */
@media (max-width: 768px) {
    .feedback-form-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feedback-form-section,
    .feedback-info-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .feedback-form-section,
    .feedback-info-section {
        padding: 1rem;
    }
    
    .rating-container {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .main-content .container {
        gap: 1.5rem;
    }
    
    .main-heading {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .subtitle {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 16px;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .announcement-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .main-heading {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }
    
    .subtitle {
        font-size: 14px;
    }
}

/* Page-specific styles */
.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(90deg, #fde68a, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 3rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.guide-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-section:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
}

.guide-section {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.guide-section:hover {
    background-color: #2a2a2a;
    border-color: #fbbf24;
    transform: translateY(-5px);
}

.guide-section:nth-child(1) { animation-delay: 0.4s; }
.guide-section:nth-child(2) { animation-delay: 0.6s; }
.guide-section:nth-child(3) { animation-delay: 0.8s; }

.section-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-content {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.guide-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
    opacity: 0.8;
}

.guide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 3rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

.cta-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    color: #ffffff;
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #fbbf24;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2563eb;
}

.nav-link.active {
    color: #fde68a;
    font-weight: 400;
}

/* CV Page Styles */
.cv-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.cv-section {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.cv-section:nth-child(1) { animation-delay: 0.2s; }
.cv-section:nth-child(2) { animation-delay: 0.4s; }
.cv-section:nth-child(3) { animation-delay: 0.6s; }

.achievement-item, .internship-item, .feedback-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #fbbf24;
}

.achievement-item:last-child, .internship-item:last-child, .feedback-item:last-child {
    margin-bottom: 0;
}

.achievement-title, .internship-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-description, .internship-description {
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.achievement-details, .internship-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievement-year, .achievement-grade, .internship-duration, .internship-date {
    color: #fde68a;
    font-size: 0.9rem;
    font-weight: 500;
}

.internship-company {
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.feedback-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.feedback-rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

.feedback-text {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.feedback-author {
    color: #fde68a;
    font-size: 0.9rem;
    font-weight: 500;
}

.download-section {
    text-align: center;
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 2rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.download-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-text {
    color: #ffffff;
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.download-button {
    background-color: #fbbf24;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #2563eb;
}

/* CV Navigation Styles */
.cv-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    gap: 2rem;
}

.nav-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: 1px solid #3a3a3a;
}

.nav-button:hover {
    background-color: #2a2a2a;
    border-color: #fbbf24;
}

/* Skills Tags */
.internship-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background-color: #fbbf24;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Feedback Date */
.feedback-date {
    color: #fde68a;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* CV Overview Styles */
.section-summary {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.section-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    border-left: 3px solid #fbbf24;
}

.highlight-label {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.9rem;
}

.highlight-value {
    color: #fde68a;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-link {
    display: inline-block;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.section-link:hover {
    color: #fde68a;
}

/* Redirect Message Styles */
.redirect-message {
    text-align: center;
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.redirect-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fde68a, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.redirect-text {
    color: #ffffff;
    opacity: 0.8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.redirect-dots {
    color: #ffffff;
    opacity: 0.6;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.redirect-note {
    color: #fde68a;
    opacity: 0.9;
    font-size: 1rem;
    margin-top: 2rem;
    font-weight: 500;
}

.redirect-countdown {
    display: inline-block;
    background-color: #fbbf24;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    animation: pulse 1s infinite;
}

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