* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 50%, #e6f3ff 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 25, 112, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(70, 130, 180, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50%" y="50%" font-size="40" fill="rgba(70, 130, 180, 0.2)" text-anchor="middle" dominant-baseline="middle">♠</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50%" y="50%" font-size="40" fill="rgba(255, 215, 0, 0.2)" text-anchor="middle" dominant-baseline="middle">♥</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50%" y="50%" font-size="40" fill="rgba(0, 100, 0, 0.2)" text-anchor="middle" dominant-baseline="middle">♣</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50%" y="50%" font-size="40" fill="rgba(255, 99, 71, 0.2)" text-anchor="middle" dominant-baseline="middle">♦</text></svg>');
    background-size: 100px 100px, 100px 100px, 100px 100px, 100px 100px;
    background-position: 0 0, 50px 50px, 0 50px, 50px 0;
    background-repeat: repeat;
    z-index: -1;
}

.alpha-banner {
    text-align: center;
    color: #2c3e50;
    padding: 40px;
    /* backdrop-filter: blur(10px); */
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.alpha-banner h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alpha-banner p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2c3e50;
}

.alpha-warning-bar {
    background: linear-gradient(90deg, #2e7d32, #388e3c);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.alpha-warning-bar .alpha-age-icon {
    display: inline-block;
    background: white;
    color: #2e7d32;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-weight: bold;
    margin-right: 8px;
    font-size: 10px;
}

.alpha-warning-bar a {
    color: #b3ffb3;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.alpha-warning-bar a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.alpha-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 50%, rgba(230, 243, 255, 0.95) 100%);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(70, 130, 180, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.alpha-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    /* gap: 31vw; */
}

.alpha-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

.alpha-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
    overflow: hidden;
}

.alpha-logo-icon::before {
    content: '♠';
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.alpha-logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: alpha-shine 3s infinite;
}

@keyframes alpha-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.alpha-logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alpha-burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(70, 130, 180, 0.3);
    transition: all 0.3s ease;
    z-index: 1001;
}

.alpha-burger-menu:hover {
    background: rgba(240, 248, 255, 1);
    border-color: #4682b4;
    transform: scale(1.05);
}

.alpha-burger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #4682b4, #5f9ea0);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.alpha-burger-menu.active .alpha-burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.alpha-burger-menu.active .alpha-burger-line:nth-child(2) {
    opacity: 0;
}

.alpha-burger-menu.active .alpha-burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

    .alpha-nav-menu {
        display: flex;
        list-style: none;
        gap: 10px;
    }

.alpha-nav-item {
    position: relative;
}

.alpha-nav-link {
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 248, 255, 0.8));
    border: 2px solid rgba(70, 130, 180, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alpha-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 130, 180, 0.2), transparent);
    transition: left 0.5s ease;
}

.alpha-nav-link:hover::before {
    left: 100%;
}

.alpha-nav-link:hover {
    color: #1e3a8a;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.9), rgba(230, 243, 255, 0.9));
    border-color: #4682b4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(70, 130, 180, 0.3);
}

/* Mobile styles */
@media (max-width: 768px) {
  .alpha-burger-menu {
    display: flex;
    z-index: 3001; /* зверху всього */
  }

  .alpha-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 300px;
    height: 100vh;
    background: #ffffff; /* без прозорості */
    backdrop-filter: none; /* вимикає розмиття */
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    border-left: 3px solid rgba(70, 130, 180, 0.3);
    z-index: 3000; /* поверх усього */
  }

  .alpha-nav-menu.active {
    right: 0;
  }

  .alpha-nav-link {
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    font-size: 16px;
    background: #f8fcff;
    border: 2px solid rgba(70, 130, 180, 0.2);
    transform: translateX(50px);
    opacity: 0;
    animation: alpha-slideIn 0.6s ease forwards;
  }

  .alpha-nav-menu.active .alpha-nav-link:nth-child(1) { animation-delay: 0.1s; width: 49vw; }
  .alpha-nav-menu.active .alpha-nav-link:nth-child(2) { animation-delay: 0.2s; }
  .alpha-nav-menu.active .alpha-nav-link:nth-child(3) { animation-delay: 0.3s; }
  .alpha-nav-menu.active .alpha-nav-link:nth-child(4) { animation-delay: 0.4s; }
  .alpha-nav-menu.active .alpha-nav-link:nth-child(5) { animation-delay: 0.5s; }

  .alpha-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2500; /* нижче за меню */
  }

  .alpha-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.alpha-header {
  z-index: 3100; /* додати поверх фонів */
  position: relative;
}



@keyframes alpha-slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Header glow effect */
.alpha-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4682b4, transparent);
    animation: alpha-glow 2s ease-in-out infinite alternate;
}

@keyframes alpha-glow {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Additional animations */
.alpha-logo:hover .alpha-logo-icon {
    transform: rotate(360deg);
    transition: transform 0.8s ease;
}

.alpha-logo:hover .alpha-logo-text {
    text-shadow: 0 0 10px rgba(70, 130, 180, 0.5);
}

.alpha-game-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.alpha-game-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #415a77 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(70, 130, 180, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #e0e0e0;
}

.alpha-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(70, 130, 180, 0.4);
}

.alpha-game-image {
    width: 15vw;
    height: 8vw;
    margin: 0 auto 10px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.alpha-game-rating {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.alpha-game-offer {
    color: #d0d0d0;
    font-size: 1em;
    margin-bottom: 10px;
}

.alpha-game-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(60, 60, 70, 0.8), rgba(70, 70, 80, 0.8));
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid rgba(70, 130, 180, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.alpha-game-btn:hover {
    color: #a0c0ff;
    background: linear-gradient(135deg, rgba(70, 70, 80, 0.9), rgba(80, 80, 90, 0.9));
    border-color: #4682b4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 130, 180, 0.4);
}

.alpha-game-online {
    color: #a0d0a0;
    font-size: 0.9em;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .alpha-game-section {
        grid-template-columns: 1fr;
    }
}

.alpha-review-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.alpha-review-header {
    color: #2c3e50;
    margin-bottom: 20px;
}

.alpha-review-header h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alpha-review-header p {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 10px;
}

.alpha-review-header .alpha-see-all {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.alpha-review-header .alpha-see-all:hover {
    color: #c0392b;
}

.alpha-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.alpha-review-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #415a77 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: left;
    color: #ecf0f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.alpha-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.alpha-review-image {
    width: 4vw;
    height: 3vw;
    border-radius: 7vw;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.alpha-review-content {
    flex-grow: 1;
}

.alpha-review-info .alpha-review-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.alpha-review-info .alpha-review-rating {
    color: #f1c40f;
    margin-bottom: 10px;
}

.alpha-review-text {
    font-size: 0.95em;
    line-height: 1.5;
}

.alpha-read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #c0392b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.alpha-read-more:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .alpha-review-grid {
        grid-template-columns: 1fr;
    }
    .alpha-review-card {
        flex-direction: column;
        align-items: center;
    }
    .alpha-review-image {
        margin-right: 0;
        margin-bottom: 15px;
        height: 15vw;
        width: 15vw;
    }
}

.alpha-faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.alpha-faq-header {
    color: #2c3e50;
    margin-bottom: 30px;
}

.alpha-faq-header h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alpha-faq-header p {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 10px;
}

.alpha-faq-item {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #415a77 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.alpha-faq-item:hover {
    box-shadow: 0 8px 25px rgba(70, 130, 180, 0.4);
}

.alpha-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #ecf0f1;
    cursor: pointer;
    position: relative;
    font-size: 1.1em;
    font-weight: 600;
}

.alpha-faq-toggle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: transform 0.4s ease, background 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.alpha-faq-toggle:hover {
    background: linear-gradient(135deg, #5f9ea0, #2e7d32);
    transform: scale(1.1);
}

.alpha-faq-answer {
    max-height: 0;
    padding: 0 20px;
    color: #d0d0d0;
    font-size: 0.95em;
    line-height: 1.6;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.alpha-faq-checkbox:checked ~ .alpha-faq-answer {
  max-height: 250px;
  padding: 15px 20px;
}
.alpha-faq-checkbox:checked + .alpha-faq-question .alpha-faq-toggle {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #2e7d32, #388e3c);
}


.alpha-faq-item.active .alpha-faq-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #2e7d32, #388e3c);
}

/* Card suit rotation animation */
@keyframes alpha-suit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.alpha-faq-toggle::before {
    content: '♠'; /* Default suit, will be overridden by specific items */
    animation: alpha-suit-spin 1.5s ease-in-out infinite;
}

.alpha-faq-item:nth-child(1) .alpha-faq-toggle::before { content: '♠'; }
.alpha-faq-item:nth-child(2) .alpha-faq-toggle::before { content: '♥'; }
.alpha-faq-item:nth-child(3) .alpha-faq-toggle::before { content: '♣'; }
.alpha-faq-item:nth-child(4) .alpha-faq-toggle::before { content: '♦'; }

/* Responsive design */
@media (max-width: 768px) {
    .alpha-faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .alpha-faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
    .alpha-faq-answer {
        font-size: 0.9em;
    }
    .alpha-faq-item.active .alpha-faq-answer {
        max-height: 250px; /* Increased for mobile content */
    }
}
.alpha-faq-checkbox {
    display: none; /* Приховуємо чекбокс */
}
.alpha-info-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-radius: 15px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(10px); */
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    background: transparent; /* Прибрано білий фон */
}

.alpha-info-section::before {
    content: none; /* Прибрано анімований градієнтний фон і обертання */
}

.alpha-info-header {
    color: #2c3e50;
    margin-bottom: 30px;
}

.alpha-info-header h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.alpha-info-header p {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alpha-info-content {
    color: #2c3e50;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 20px;
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent; /* Прибрано білий фон */
}

.alpha-info-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(70, 130, 180, 0.3);
}

.alpha-info-content p {
    margin-bottom: 15px;
    text-align: justify;
    color: #34495e;
}

.alpha-info-content p:last-child {
    margin-bottom: 0;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
    .alpha-info-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .alpha-info-header h2 {
        font-size: 2em;
    }
    .alpha-info-header p {
        font-size: 1em;
    }
    .alpha-info-content {
        font-size: 1em;
        padding: 15px;
        max-width: 100%;
    }
    .alpha-info-content:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(70, 130, 180, 0.2);
    }
}
.alpha-form-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 50%, rgba(230, 243, 255, 0.95) 100%); */
    /* border-radius: 15px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(10px); */
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.alpha-form-header {
    color: #2c3e50;
    margin-bottom: 30px;
}

.alpha-form-header h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.alpha-form-header p {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alpha-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 50%, rgba(65, 90, 119, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.alpha-form-group {
    text-align: left;
}

.alpha-form-group label {
    display: block;
    color: #ecf0f1;
    font-weight: 600;
    margin-bottom: 8px;
}

.alpha-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: #2c3e50;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.alpha-form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(70, 130, 180, 0.3);
}

.alpha-form-submit {
    padding: 12px 30px;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alpha-form-submit:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
}

@media (max-width: 768px) {
    .alpha-form-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .alpha-form-header h2 {
        font-size: 2em;
    }
    .alpha-form-header p {
        font-size: 1em;
    }
    .alpha-form {
        padding: 15px;
        max-width: 100%;
    }
    .alpha-form-group input {
        padding: 10px 12px;
    }
    .alpha-form-submit {
        padding: 10px 25px;
        font-size: 1em;
    }
}

.alpha-community-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 50%, rgba(230, 243, 255, 0.95) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.alpha-community-header {
    color: #2c3e50;
    margin-bottom: 30px;
}

.alpha-community-header h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.alpha-community-header p {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alpha-community-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.alpha-community-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #415a77 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-align: left;
    color: #ecf0f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.alpha-community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(70, 130, 180, 0.4);
}

.alpha-community-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0);
    border-radius: 10px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.alpha-community-info {
    flex-grow: 1;
}

.alpha-community-info h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #d0d0d0;
}

.alpha-community-info p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.alpha-community-stats {
    font-size: 0.9em;
    color: #a0d0a0;
}

.alpha-community-footer {
    padding: 20px;
    background: rgba(44, 62, 80, 0.9);
    border-radius: 10px;
    color: #ecf0f1;
    font-size: 1em;
    line-height: 1.6;
}

.alpha-community-footer a {
    color: #b3ffb3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.alpha-community-footer a:hover {
    color: #a0d0a0;
    text-shadow: 0 0 8px rgba(179, 255, 179, 0.8);
}

@media (max-width: 768px) {
    .alpha-community-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .alpha-community-header h2 {
        font-size: 2em;
    }
    .alpha-community-header p {
        font-size: 1em;
    }
    .alpha-community-content {
        grid-template-columns: 1fr;
    }
    .alpha-community-card {
        flex-direction: column;
        text-align: center;
    }
    .alpha-community-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.alpha-forum-highlight {
  color: #2c3e50;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.alpha-forum-highlight:hover {
  color: #2e7d32;
  text-shadow: 0 0 6px rgba(46, 125, 50, 0.4);
}
 .alpha-footer-light {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  color: #2c3e50;
  padding: 40px 0 20px;
  border-top: 2px solid rgba(70, 130, 180, 0.2);
}

.alpha-footer-top-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.alpha-footer-top-links a {
  font-size: 0.95em;
  color: #4682b4;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.alpha-footer-top-links a:hover {
  background: rgba(70, 130, 180, 0.1);
}

.alpha-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.alpha-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.alpha-footer-section h3 {
  font-size: 1.3em;
  color: #2e7d32;
  margin-bottom: 10px;
}

.alpha-footer-text {
  font-size: 1em;
  line-height: 1.6;
  color: #34495e;
}

.alpha-footer-highlight {
  color: #5f9ea0;
  font-weight: bold;
}

.alpha-support-info {
  background: rgba(70, 130, 180, 0.08);
  padding: 12px 16px;
  border-left: 4px solid #5f9ea0;
  margin-top: 15px;
  border-radius: 8px;
}

.alpha-support-info p {
  margin-bottom: 8px;
  font-size: 0.9em;
}

.alpha-support-contact {
  color: #2e7d32;
  font-weight: bold;
}

.alpha-disclaimer {
  background: #ffffff;
  border: 1px solid #d0e0f0;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.alpha-disclaimer p {
  color: #34495e;
  font-size: 0.95em;
  margin-bottom: 10px;
}

.alpha-age-badge {
  width: 60px;
  height: 60px;
  background: #2e7d32;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  margin: 0 auto 15px;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.alpha-partners {
  display: flex;
  justify-content: center;
  gap: 6vw;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.alpha-partner-logo {
  background: #ffffff;
  border: 1px solid #d0e0f0;
  padding: 8px 14px;
  border-radius: 8px;
  color: #2c3e50;
  font-size: 0.85em;
  font-weight: 600;
  /* transition: all 0.3s ease; */
  text-decoration: none;
}

.alpha-partner-logo:hover {
  background: #e0f5ff;
  color: #2e7d32;
  transform: translateY(-3px);
}

.alpha-footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(70, 130, 180, 0.1);
}

.alpha-company-info p {
  font-size: 0.85em;
  color: #5f9ea0;
  margin-bottom: 5px;
}

.alpha-copyright {
  font-size: 0.8em;
  color: #95a5a6;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .alpha-footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .alpha-footer-top-links {
    flex-direction: column;
    align-items: center;
  }
}
.alpha-partner-logo {
  background: #1e1e2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8vw;
  height: 4vw;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.alpha-partner-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
  transition: filter 0.3s ease;
}

.alpha-partner-logo:hover {
  background: #2c2c3c;
}

.alpha-partner-logo:hover img {
  filter: brightness(1.2) contrast(1.2);
}

@media (max-width: 768px) {
  .alpha-partner-logo {
    width: 80px;
    height: 30px;
  }
}
.alpha-affiliate-warning {
  /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #415a77 100%); */
  padding: 50px 20px;
  text-align: center;
  border-radius: 15px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
  color: #ecf0f1;
  max-width: 1000px;
  margin: 40px auto;
}

.alpha-affiliate-container {
  max-width: 700px;
  margin: 0 auto;
}

.alpha-affiliate-title {
   font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alpha-affiliate-text {
font-size: 1.1em;
    color: #34495e;
    margin-top: 10px;
}

.alpha-affiliate-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(60, 60, 70, 0.8), rgba(70, 70, 80, 0.8));
  color: #e0e0e0;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid rgba(70, 130, 180, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  margin: 3vw;
  transition: all 0.3s ease;
}

.alpha-affiliate-button:hover {
 color: #a0c0ff;
    background: linear-gradient(135deg, rgba(70, 70, 80, 0.9), rgba(80, 80, 90, 0.9));
    border-color: #4682b4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 130, 180, 0.4);
}

@media (max-width: 768px) {
  .alpha-affiliate-title {
    font-size: 1.8em;
  }
  .alpha-affiliate-text {
    font-size: 1em;
  }
  .alpha-affiliate-button {
    padding: 12px 24px;
    font-size: 0.95em;
  }
}
.alpha-propos-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.alpha-propos-header {
    color: #2c3e50;
    margin-bottom: 20px;
}

.alpha-propos-header h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alpha-propos-header p {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 10px;
}

.alpha-propos-header .alpha-see-all {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.alpha-propos-header .alpha-see-all:hover {
    color: #c0392b;
}

.alpha-propos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.alpha-propos-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #415a77 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: left;
    color: #ecf0f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.alpha-propos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.alpha-propos-image {
    width: 12vw;
    height: 12vw;
    border-radius: 7vw;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.alpha-propos-content {
    flex-grow: 1;
}

.alpha-propos-info .alpha-review-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.alpha-propos-info .alpha-review-rating {
    color: #f1c40f;
    margin-bottom: 10px;
}

.alpha-propos-text {
    font-size: 0.95em;
    line-height: 1.5;
}

.alpha-propos-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #c0392b;
    font-weight: 600;
    transition: all 0.3s ease;
}



@media (max-width: 768px) {
    .alpha-propos-grid {
        grid-template-columns: 1fr;
    }
    .alpha-propos-card {
        flex-direction: column;
        align-items: center;
    }
    .alpha-propos-image {
        margin-right: 0;
        margin-bottom: 15px;
        width: 20vw;
        height: 20vw;
    }
}
.alpha-privacy-section {
  padding: 60px 30px;
  background: linear-gradient(135deg, #f5fafb 0%, #eaf6ff 100%);
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto 70px;
  box-shadow: 0 6px 25px rgba(100, 140, 180, 0.15);
  font-family: 'Arial', sans-serif;
}

.alpha-privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.alpha-privacy-header h2 {
  font-size: 2.8em;
  background: linear-gradient(135deg, #1e88e5, #43a047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
}

.alpha-privacy-header p {
  font-size: 1.3em;
  color: #2d3e50;
  margin-top: 15px;
}

.alpha-privacy-content {
  color: #2b2b2b;
  font-size: 1.15em;
  line-height: 1.9;
}

.alpha-privacy-content h3,
.alpha-privacy-subtitle {
  margin-top: 30px;
  font-size: 1.5em;
  color: #0b3c5d;
  border-left: 4px solid #43a047;
  padding-left: 10px;
}

.alpha-privacy-content ul {
  padding-left: 25px;
  margin: 15px 0;
  list-style-type: disc;
}

.alpha-privacy-link {
  color: #1e88e5;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.alpha-privacy-link:hover {
  color: #43a047;
  text-shadow: 0 0 6px rgba(67, 160, 71, 0.3);
}

@media (max-width: 768px) {
  .alpha-privacy-section {
    padding: 40px 20px;
  }

  .alpha-privacy-header h2 {
    font-size: 2.1em;
  }

  .alpha-privacy-header p {
    font-size: 1.1em;
  }

  .alpha-privacy-content {
    font-size: 1em;
  }

  .alpha-privacy-content h3 {
    font-size: 1.25em;
  }
}
.alpha-terms-section {
  padding: 60px 30px;
  background: linear-gradient(135deg, #f9fcff 0%, #eef4fb 100%);
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto 70px;
  box-shadow: 0 6px 25px rgba(90, 130, 160, 0.12);
  font-family: 'Arial', sans-serif;
}

.alpha-terms-header {
  text-align: center;
  margin-bottom: 40px;
}

.alpha-terms-header h2 {
  font-size: 2.7em;
  background: linear-gradient(135deg, #0d47a1, #00796b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.2px;
}

.alpha-terms-header p {
  font-size: 1.25em;
  color: #2d3e50;
  margin-top: 15px;
}

.alpha-terms-content {
  color: #2c2c2c;
  font-size: 1.15em;
  line-height: 1.9;
}

.alpha-terms-subtitle {
  margin-top: 30px;
  font-size: 1.5em;
  color: #003c66;
  border-left: 4px solid #00796b;
  padding-left: 12px;
}

.alpha-terms-content ul {
  padding-left: 25px;
  margin: 15px 0;
  list-style-type: disc;
}

.alpha-terms-link {
  color: #0d47a1;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.alpha-terms-link:hover {
  color: #00796b;
  text-shadow: 0 0 6px rgba(0, 121, 107, 0.3);
}

@media (max-width: 768px) {
  .alpha-terms-section {
    padding: 40px 20px;
  }

  .alpha-terms-header h2 {
    font-size: 2.1em;
  }

  .alpha-terms-header p {
    font-size: 1.1em;
  }

  .alpha-terms-content {
    font-size: 1em;
  }

  .alpha-terms-subtitle {
    font-size: 1.25em;
  }
}
.alpha-responsible-section {
  padding: 60px 30px;
  background: linear-gradient(135deg, #fdfefe 0%, #ecf7f5 100%);
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto 60px;
  box-shadow: 0 5px 22px rgba(80, 150, 120, 0.15);
  font-family: 'Arial', sans-serif;
}

.alpha-responsible-header {
  text-align: center;
  margin-bottom: 35px;
}

.alpha-responsible-header h2 {
  font-size: 2.5em;
  background: linear-gradient(135deg, #2e7d32, #0288d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.2px;
}

.alpha-responsible-header p {
  font-size: 1.2em;
  color: #345;
  margin-top: 12px;
}

.alpha-responsible-content {
  color: #263238;
  font-size: 1.15em;
  line-height: 1.85;
}

.alpha-responsible-subtitle {
  margin-top: 28px;
  font-size: 1.45em;
  color: #00695c;
  border-left: 4px solid #2e7d32;
  padding-left: 12px;
}

.alpha-responsible-content strong {
  color: #00695c;
}

@media (max-width: 768px) {
  .alpha-responsible-section {
    padding: 40px 20px;
  }

  .alpha-responsible-header h2 {
    font-size: 2em;
  }

  .alpha-responsible-header p {
    font-size: 1em;
  }

  .alpha-responsible-content {
    font-size: 1em;
  }

  .alpha-responsible-subtitle {
    font-size: 1.2em;
  }
}
.alpha-cookies-section {
  padding: 60px 30px;
  background: linear-gradient(135deg, #f7fafc 0%, #e3f2fd 100%);
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto 60px;
  box-shadow: 0 5px 25px rgba(100, 140, 200, 0.15);
  font-family: 'Arial', sans-serif;
}

.alpha-cookies-header {
  text-align: center;
  margin-bottom: 40px;
}

.alpha-cookies-header h2 {
  font-size: 2.4em;
  background: linear-gradient(135deg, #1565c0, #0097a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.alpha-cookies-header p {
  font-size: 1.2em;
  color: #37474f;
  margin-top: 10px;
}

.alpha-cookies-content {
  color: #263238;
  font-size: 1.15em;
  line-height: 1.85;
}

.alpha-cookies-subtitle {
  margin-top: 30px;
  font-size: 1.5em;
  color: #00796b;
  border-left: 4px solid #0097a7;
  padding-left: 12px;
}

.alpha-cookies-content ul {
  padding-left: 25px;
  margin: 15px 0;
  list-style-type: disc;
}

.alpha-cookies-link {
  color: #1565c0;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.alpha-cookies-link:hover {
  color: #00897b;
  text-shadow: 0 0 6px rgba(0, 121, 107, 0.3);
}

@media (max-width: 768px) {
  .alpha-cookies-section {
    padding: 40px 20px;
  }

  .alpha-cookies-header h2 {
    font-size: 2em;
  }

  .alpha-cookies-header p {
    font-size: 1em;
  }

  .alpha-cookies-content {
    font-size: 1em;
  }

  .alpha-cookies-subtitle {
    font-size: 1.25em;
  }
}
.alpha-thankyou-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background: transparent;
}

.alpha-thankyou-card {
  max-width: 600px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.95));
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(70, 130, 180, 0.2);
  text-align: center;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
}

.alpha-thankyou-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4682b4, #5f9ea0, #2e7d32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alpha-thankyou-text {
  font-size: 1.1em;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 20px;
}

.alpha-thankyou-home-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #2e7d32, #388e3c);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #2e7d32;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  font-size: 1.05em;
}

.alpha-thankyou-home-btn:hover {
  background: linear-gradient(135deg, #388e3c, #2e7d32);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

@media (max-width: 768px) {
  .alpha-thankyou-card {
    padding: 30px 20px;
  }

  .alpha-thankyou-title {
    font-size: 2em;
  }

  .alpha-thankyou-text {
    font-size: 1em;
  }

  .alpha-thankyou-home-btn {
    font-size: 1em;
    padding: 10px 24px;
  }
}
.alpha-go-home {
  position: fixed;
  bottom: 10vw;
  right: 3vw;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1e88e5, #43a047);
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  line-height: 55px;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(30, 136, 229, 0.4), 0 0 25px rgba(67, 160, 71, 0.4);
  transition: all 0.4s ease;
  z-index: 998;
  backdrop-filter: blur(8px);
}

.alpha-go-home:hover {
  transform: rotate(8deg) scale(1.1);
  background: linear-gradient(135deg, #43a047, #1e88e5);
  box-shadow: 0 0 25px rgba(30, 136, 229, 0.7), 0 0 35px rgba(67, 160, 71, 0.6);
}
.alpha-scroll-top {
  position: fixed;
  bottom: 3vw;
  right: 3vw;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2e7d32, #5f9ea0);
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  line-height: 55px;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(46, 125, 50, 0.5), 0 0 30px rgba(95, 158, 160, 0.4);
  transition: all 0.4s ease;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.alpha-scroll-top:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(95, 158, 160, 0.7), 0 0 40px rgba(46, 125, 50, 0.5);
  background: linear-gradient(135deg, #5f9ea0, #2e7d32);
}
html {
  scroll-behavior: smooth;
}
