body { 
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #333;
}

main {
  padding: 60px 20px;
  text-align: center;
}
/* Basic Reset and Global Styles */
body {
    background-color: #ffffff; /* Dark background from the image */
    color: #f0f0f0; /* Light text color */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Mimic mobile font */
    margin: 0;
    padding: 0;
    padding-bottom: 60px; 
}

a {
    text-decoration: none;
    color: inherit;
}

/* Общие настройки страницы */

/* Заголовок */
h1 {
  font-size: 3.5rem; /* увеличен размер */
  margin-top: 40px;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}

/* Membership Card Container */
.membership-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}

/* Карточка */
.membership-card {
  background: linear-gradient(135deg, #007cf0, #00dfd8);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  width: 300px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Кнопки */
.add-on-button,
.next-button {
  position: absolute;
  top: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  z-index: 3;
}

.add-on-button {
  right: 50px;
  padding: 8px 15px;
  border-radius: 20px;
}

.next-button {
  right: 10px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Текст внутри карточки */
.card-details {
  z-index: 2;
  padding-bottom: 10px;
  color: white;
}

.card-details .duration {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.card-details .days-left {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}


/* Don't Share Notice */
.share-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #66a6ff; /* Slightly lighter dark background */
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.share-notice span:first-child {
    font-size: 16px;
}

.share-notice .info-icon {
    font-size: 18px;
    font-weight: bold;
    color: #ebebeb; /* Grey-ish color for the info icon */
}

    /* Action Lists (Списки) */
    .action-list {
        margin-top: 40px;
    }

    .action-list h2 {
        color: #333; 
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 10px; /* Увеличиваем отступ после заголовка */
        padding: 0;
    }
    
    .action-item {
        /* Делаем каждый элемент отдельной карточкой */
        background-color:#66a6ff; /* Белый фон */
        border: 1px solid#66a6ff; /* Тонкая серая обводка (рамка) */
        border-radius: 8px; /* Скругленные углы */
        margin-bottom: 10px; /* Отступ между карточками */
        padding: 15px 15px; /* Увеличиваем внутренний отступ */
        
        display: flex;
        align-items: center;
        
        border-bottom: none; 
        color: #ffffff; 
        
        /* Добавляем тень, чтобы карточки выделялись */
        box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
        transition: box-shadow 0.2s;
    }
    
    .action-item:hover {
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .action-item:last-child {
        border-bottom: none; /* Это остается, но теперь оно лишнее, т.к. border-bottom: none; выше */
    }

      .action-item .icon {
        /* Если вы используете иконку, ей нужен отступ */
        margin-right: 15px;
    }
    
    .action-item .text {
        flex-grow: 1;
        font-size: 16px; 
    }

    .action-item .arrow {
        font-size: 20px;
        color: #fff;
        opacity: 0.8;
        
        margin-left: 10px; 
        width: auto;
    }
    
    /* Убедимся, что линии-разделители между секциями не конфликтуют */
    .section-separator {
        border: none;
        border-top: 1px solid #ddd;
        margin: 20px 0;
        width: 100%;
    }


h1 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}
h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f4b400, #ff6f61);
  margin: 12px auto 0;
  border-radius: 2px;
}

.subtitle {
  margin-bottom: 40px;
  color: #555;
  font-size: 1.1rem;
}

.membership-container {
  display: flex;
  justify-content: center;   /* center by gorizontalr */
  gap: 30px;                 /* spacing between cards */
  flex-wrap: wrap;           /* so that it can be carried over to small screens */
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  flex: 1 1 280px;   /* card's width and adaptibility */
  min-height: 350px; /*same height */
}



.card {
  position: relative;
  padding: 40px 20px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: left 0.5s;
  z-index: 1;
}
.card:hover::before {
  left: 100%;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.card h2, 
.card p, 
.card .price, 
.card .per, 
.card ul, 
.card button {
  position: relative;
  z-index: 2;
}

.card h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.per {
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
ul li {
  margin: 6px 0;
  font-size: 1rem;
}

main button {
  background: #fff;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
main button:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

/* Cards gradient */
.green {
  background: linear-gradient(135deg,#f7971e, #ffd200);
}
.pink {
  background: linear-gradient(135deg,  #fc5c7d, #6a82fb);
}
.blue {
  background: linear-gradient(135deg,  #007cf0, #00dfd8);
}
.corner-image {
  position: absolute;
  top: 15px;       /* distance from the top */
  left: 15px;      /* distance from the left */
  width: 100px;    /* resize image */
  height: auto;    /* keep proportions */
  z-index: 2;      /* make sure image is above gradient */
}
.cornerr-image {
  position: absolute;
  top: 0;       /* distance from the top */
  left: 0;      /* distance from the left */
  width: 200px;    /* resize image */
  height: auto;    /* keep proportions */
  z-index: 2;      /* make sure image is above gradient */
}
.corner-imagee {
  position: absolute;
  top: 25px;       /* distance from the top */
  left: 15px;      /* distance from the left */
  width: 70px;     /* smaller resize */
  height: auto;    /* keep proportions */
  z-index: 2;      /* make sure image is above gradient */
}

.membership-card-container {
  display: flex;
  justify-content: flex-start;
  padding: 20px 60px;   
  min-height: 500px;
}

/* Membership Card */
.membership-card {
  max-width: 600px;          
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #007cf0, #00dfd8);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
}
/* ---------- LANGUAGE CONTAINER ---------- */

.language-container {
  background-color:#66a6ff;
  border: 2px solid #66a6ff;
  border-radius: 12px;
  padding: 20px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.language-container label,
.language-container select,
.language-container p {
  color: #000;
  font-weight: 500;
}

#language {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #aaa;
  margin-left: 6px;
}

#greeting {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
}

/* ---------- BUTTON STYLE ---------- */
#colorButton {
  background: #333;
  color: white;
  margin-top: 20px;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

#colorButton:hover {
  background: #555;
  transform: translateY(-2px);
}


/* _____________________________________________ */
/*  DARK THEME STYLES */
/* Headers */
body.dark-theme .app-header {
  background-color: transparent !important;
}

body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3 {
  color: #84d1fa;
}

/* Membership and Cards */
body.dark-theme .membership-card {
  background: linear-gradient(135deg, #005f99, #00a3a3);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

body.dark-theme .card {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

body.dark-theme .card button {
  background: #00b4d8;
  color: #fff;
}

body.dark-theme .card button:hover {
  background: #0096c7;
}

/* Action List */
body.dark-theme .action-item {
  background-color: #1e1e1e;
  border: 1px solid #333;
  color: #e0e0e0;
}

body.dark-theme .action-item:hover {
  box-shadow: 0 2px 8px rgba(0, 180, 216, 0.2);
}

/* Share Notice */
body.dark-theme .share-notice {
  background-color: #1a2730;
  color: #fff;
}

/* Language container */
body.dark-theme .language-container {
  background-color: #1f2933;
  border-color: #374151;
  color: #f8f9fa;
}

body.dark-theme .language-container label,
body.dark-theme .language-container p {
  color: #e0e0e0;
}

body.dark-theme #language {
  background-color: #121212;
  color: #fff;
  border: 1px solid #333;
}

body.dark-theme #greeting {
  color: #fff;
}

/* Buttons */
body.dark-theme #colorButton {
  background: #00b4d8;
  color: #fff;
}

body.dark-theme #colorButton:hover {
  background: #0096c7;
}

/* Footer Navigation */
body.dark-theme .footer-nav {
  background-color: #0d0d0d;
  border-top: 1px solid #222;
}

body.dark-theme .footer-nav .nav-item {
  color: #aaa;
}

body.dark-theme .footer-nav .nav-item.active {
  color: #00b4d8;
}

/* Page Content */
body.dark-theme .page-content {
  background-color: #121212;
}

/* Header */
body.dark-theme .app-header {
  background-color: #1c1c1c;
  border-bottom: 1px solid #333;
}

body.dark-theme .header-icons .status-indicator {
  background-color: #00b4d8;
  color: #fff;
}

/* Highlight for gradients that stay colorful */
body.dark-theme .blue { background: linear-gradient(135deg, #004e92, #000428); }
body.dark-theme .pink { background: linear-gradient(135deg, #a83279, #67247d); }
body.dark-theme .green { background: linear-gradient(135deg, #ff9f1c, #ffbf69); }
/* Task 8: Info Icon Expandable Warning with Copy Button */

/* Info icon interactive */
.info-icon {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.info-icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.info-icon.active {
    transform: rotate(180deg);
}

/* Warning Section (hidden by default) */
.warning-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
    background: linear-gradient(135deg, #005f99, #00a3a3);
    border-radius: 12px;
    padding: 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.warning-section.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
    padding: 25px 20px;
}

/* Warning content */
.warning-text-content {
    color: white;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warning-text-content h4 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.warning-text-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.warning-text-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.warning-text-content ul li::before {
    content: '✖';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.warning-footer {
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
}

/* Copy Warning Button */
.copy-warning-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #ff6b6b;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.copy-warning-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.copy-warning-btn:active {
    transform: translateY(0);
}

.copy-warning-btn.copied {
    background-color: #4caf50;
    color: white;
}


/* Tooltip styling */
.copy-tooltip {
    position: fixed;
    background-color: #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 10000;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Dark theme support */
body.dark-theme .warning-section {
    background: linear-gradient(135deg, #2a5ac9, #a61e4d);
}

body.dark-theme .copy-warning-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #c92a2a;
}

body.dark-theme .copy-warning-btn:hover {
    background-color: #fff;
}

body.dark-theme .copy-tooltip {
    background-color: #00b4d8;
}

body.dark-theme .copy-tooltip::after {
    border-top-color: #00b4d8;
}

/* Responsive */
@media (max-width: 600px) {
    .warning-text-content h4 {
        font-size: 18px;
    }
    
    .warning-text-content ul li {
        font-size: 14px;
    }
    
    .copy-warning-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}
/* === Scroll Progress Bar (under header) === */
#scrollProgress {
  position: fixed;
  top: 73px;
  left: 0;
  height: 8px;
  width: 0%;
  background: linear-gradient(90deg, #003366, #004c99, #0066cc);
  box-shadow: 0 0 12px rgba(0, 51, 102, 0.6);
  transition: width 0.25s ease-out;
  z-index: 9999;
}


.dark-theme #scrollProgress {
  background: linear-gradient(90deg, #66a6ff, #007cf0, #00dfd8);
  box-shadow: 0 0 10px rgba(0, 124, 240, 0.6);
}
.membership-details {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 10px;
  width: 85%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  font-size: 14px;
  animation: fadeIn 0.3s ease;
}

.membership-details p {
  margin: 6px 0 10px;
  font-size: 13px;
}

.details-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.copy-details, .close-details {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s ease;
}

.copy-details:hover, .close-details:hover {
  background: #333;
}

.card {
  position: relative;
  overflow: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.action-description {
  background: #f5faff;
  border-left: 3px solid #4aa3ff;
  padding: 10px 14px;
  margin: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-3px);}
  to {opacity: 1; transform: translateY(0);}
}
body {
  font-family: Arial, sans-serif;
  background: #f7f9fc;
  padding: 30px;
}

.action-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.black-text {
  font-size: 22px;
  color: #111;
  margin-bottom: 15px;
}

.action-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #66a6ff;
  color: #111;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: background 0.3s;
}

.action-item:hover {
  background: #d7eeff;
}

.arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.info-content {
  display: none;
  background: #fff;
  border-left: 3px solid #5ab0ff;
  border-radius: 0 0 10px 10px;
  padding: 15px 20px;
  margin-top: -5px;
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.info-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.info-toggle.open .arrow {
  transform: rotate(90deg);
}
/* Don't Share Notice — полностью в стиле action-item */
.share-notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #66a6ff; /* такой же фон, как у action-item */
  padding: 15px 20px;
  border-radius: 10px;
  margin: 0 0 10px 0;
  color: #111;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.1s ease;
  cursor: pointer;
}

/* При наведении и нажатии — то же поведение */
.share-notice:hover {
  background-color: #d8edff; /* как hover у action-item */
}

.share-notice:active {
  transform: scale(0.98); /* эффект клика */
}

/* Текст и иконка */
.share-notice span:first-child {
  font-size: 16px;
  font-weight: 500;
}

.share-notice .info-icon {
  font-size: 18px;
  font-weight: bold;
  color: #007cf0; /* как у стрелки/иконок */
}
.action-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eaf6ff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #111;
  box-sizing: border-box;
  cursor: default; /* теперь сам блок не кликается */
}

/* Стрелка */
.action-item .arrow {
  font-size: 18px;
  color: #007cf0;
  cursor: pointer; /* кликабельная */
  transition: transform 0.2s ease;
}

/* При наведении — чуть двигается */
.action-item .arrow:hover {
  transform: translateX(4px);
}
.promo-box {
  background-color: #eaf6ff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.promo-box span {
  font-weight: 600;
  color: #007cf0;
  font-size: 16px;
}

.copy-btn {
  background-color: #007cf0;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #0069d9;
}

/* Анимация появления */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Увеличить заголовок */
#mainTitle {
  font-size: 40px;  /* был меньше, теперь крупнее */
  font-weight: bold;
}

/* Увеличить контейнер карточки */
.membership-card-container {
  padding: 40px 0; /* больше отступ сверху и снизу */
}

.membership-card {
  min-height: 350px; /* увеличиваем высоту самой карточки */
  transform: scale(1.1); /* чуть увеличиваем визуально */
}
.membership-card-container {
  width: 90%;
  max-width: 420px;
  margin: 40px auto 80px auto;
  position: relative;
  perspective: 1000px;
}

.membership-card {
  background: linear-gradient(135deg, #007cf0, #00dfd8);
  color: white;
  border-radius: 20px;
  padding: 25px;
  min-height: 420px;
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  backface-visibility: hidden;
}

.hidden {
  display: none;
}

.corner-image1 {
  width: 200px;          /* увеличен размер */
  position: absolute;
  top: 10px;             /* чуть ближе к верху */
  left: 10px;           /* чуть ближе к правому краю */
  opacity: 0.95;         /* немного прозрачности для гармонии */
}

.membership-type {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
}

.duration {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0;
}

.days-left {
  font-size: 15px;
  color: #fdfdfd;
}

.until {
  float: right;
}

.reset-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

.more-link {
  font-size: 15px;
  color: white;
  text-decoration: underline;
}

/* Прогресс бар */
.progress {
  background-color: rgba(255,255,255,0.3);
  border-radius: 10px;
  height: 10px;
  margin: 15px 0;
  overflow: hidden;
}

.progress-bar {
  height: 10px;
  background-color: #f7971e; /* Оранжевый цвет */
  width: 40%;
  border-radius: 10px;
}

/* Вторая карточка (детали) */
.inner {
  background: linear-gradient(135deg, #007cf0, #00dfd8);
  color: white;
}

.back-button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 15px;
}

.info-box {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.bonus {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

.info-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.info-item {
  background: rgba(255,255,255,0.15);
  flex: 1;
  border-radius: 15px;
  padding: 12px;
  text-align: center;
}

.info-item h4 {
  font-size: 16px;
  color: #fff;
  opacity: 0.85;
}

.highlight {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
}

.next-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.next-button:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
