/* Alapértelmezett stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.schoolsvg{

    height: 45px;

}
:root {
    --primary-color: #0066cc;
    --secondary-color: #00c4ff;
    --dark-bg: #0a0e27;
    --light-bg: #1a1f3a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;
    --accent-bronze: #cd7f32;
}

.VSZC{

    background-color: white;
    padding: 20px;

}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    z-index: -2;
}

/* Háttér csillagok az egész oldalon */
.background-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigáció */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 196, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* From Uiverse.io by mrhyddenn */
.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 196, 255, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.language-switcher:hover {
    background: rgba(0, 196, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 196, 255, 0.3);
}

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
}

.flag-img {
    width: 24px;
    height: auto;
    display: block;
}

.lang-text {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Hero Szekció */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 1;
}

/* Csillagok rétegei */
.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes twinkleFast {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes twinkleSlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* Tejút hatás */
.milky-way {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse 80% 60% at 30% 50%,
        rgba(100, 150, 255, 0.15) 0%,
        rgba(150, 180, 255, 0.08) 20%,
        rgba(200, 210, 255, 0.04) 40%,
        transparent 70%
    );
    transform: rotate(-25deg);
    animation: milkyWayGlow 15s ease-in-out infinite;
}

@keyframes milkyWayGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 50px rgba(0, 196, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.smallBtn {
    padding: 8px 14px!important;
    margin: 3px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 196, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Általános szekció stílusok */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rólunk Szekció */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-gray);
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 15px;
    background-color: var(--dark-bg);


}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.satellite-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.satellite-svg {
    width: 300px;
    height: 300px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 196, 255, 0.5));
}

.satellite-svg rect,
.satellite-svg line,
.satellite-svg circle {
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Csapat Szekció */
.team {
    background: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-grid .team-member:last-child {
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
}

.team-member {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 196, 255, 0.3);
    border-color: var(--secondary-color);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 196, 255, 0.4);

}

.team-member h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.role {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.description {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Küldetés lista stílusok */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mission-list li {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.mission-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Küldetés Szekció */
.mission {
    background: var(--light-bg);
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-item {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s;
}

.mission-item:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    color: var(--secondary-color);
}

.mission-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 196, 255, 0.5));
}

.mission-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.mission-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Timeline */
.timeline {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
}

.timeline h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 40px;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    left: -29px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 3px solid var(--text-gray);
}

.timeline-item.completed .timeline-marker {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.timeline-item.active .timeline-marker {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    box-shadow: 0 0 20px var(--accent-gold);
}

.timeline-content h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
}

/* Szponzorok Szekció */
.sponsors {
    background: var(--dark-bg);
}

.sponsors-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.sponsorLink {
    text-decoration: none;
    display: block; /* Vagy inline-block, a designtól függően */
    color: inherit;
}

.sponsors-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.sponsor-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px solid rgba(0, 196, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.sponsor-logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sponsor-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.1), rgba(0, 102, 204, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-logo-item:hover::before {
    opacity: 1;
}

.sponsor-logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 196, 255, 0.3);
}

.sponsor-logo-item img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.sponsor-logo-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Legnagyobb támogató kiemelése */
.sponsor-logo-item.large {
    grid-column: 1 / -1;
    border-color: rgba(0, 196, 255, 0.4);
    box-shadow: 0 5px 25px rgba(0, 196, 255, 0.2);
}

.sponsor-logo-item.large img {
    max-width: 250px;
}

.become-sponsor {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
    border: 2px solid rgba(0, 196, 255, 0.2);
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .sponsors-logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sponsor-logo-item {
        min-height: 120px;
    }

    .sponsor-logo-item.large img {
        max-width: 200px;
    }
}

.become-sponsor h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.become-sponsor p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Kapcsolat Szekció */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--accent-gold);
}

/* Kapcsolati űrlap */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 196, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-keywords {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
    color: var(--text-gray);
}

/* Reszponzív design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .language-switcher {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .lang-flag {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .sponsors-grid.gold,
    .sponsors-grid.platinum,
    .sponsors-grid.silver {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* Cookie toast */
.toastContainer {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(13, 18, 45, 0.9), rgba(35, 42, 85, 0.85));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(64, 224, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(64, 224, 255, 0.3) inset;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    min-width: 320px;
    max-width: 450px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toastContainer.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.cookieIcon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookieIcon svg {
    width: 28px;
    height: 28px;
    fill: #40e0ff;
    filter: drop-shadow(0 0 5px rgba(64, 224, 255, 0.6));
}

.toastContent {
    display: flex;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    flex-direction: column;
}

.toastContent p {
    text-align: justify;
}


@media (max-width: 480px) {
    .toastContainer {
        right: 15px;
        left: 15px;
        bottom: 20px;
        min-width: auto;
    }
}