/* Beta Testers Page Styles */

/* Global variables */
:root {
    --beta-primary: #6e2de8;
    --beta-primary-dark: #5620c5;
    --beta-secondary: #00c2ff;
    --beta-accent: #ff2d9e;
    --beta-dark: #0c0e16;
    --beta-darker: #06070d;
    --beta-light: #f3f4f6;
    --beta-success: #10b981;
    --beta-glow: 0 0 20px rgba(0, 194, 255, 0.6);
}

/* Base styles */
.beta-testers-container {
    background: linear-gradient(135deg, var(--beta-darker) 0%, var(--beta-dark) 100%);
    color: var(--beta-light);
    line-height: 1.6;
    overflow: hidden;
    max-width: 1200px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    position: relative;
}

/* Ambient background effects */
.beta-testers-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    max-width: none !important;
}

.beta-testers-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
    z-index: 0;
}

.beta-testers-glow:nth-child(1) {
    background: var(--beta-primary);
    top: -300px;
    left: -200px;
    animation: beta-testers-float 20s ease-in-out infinite;
}

.beta-testers-glow:nth-child(2) {
    background: var(--beta-secondary);
    bottom: -350px;
    right: -100px;
    animation: beta-testers-float 25s ease-in-out infinite reverse;
}

.beta-testers-glow:nth-child(3) {
    background: var(--beta-accent);
    top: 20%;
    right: -300px;
    animation: beta-testers-float 18s ease-in-out infinite 2s;
}

.beta-testers-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: beta-testers-gridMove 120s linear infinite;
}

@keyframes beta-testers-gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

@keyframes beta-testers-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Content container */
.beta-testers-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
}

/* Header */
.beta-testers-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    position: relative;
}

.beta-testers-title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.beta-testers-title-container .beta-testers-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--beta-primary), var(--beta-secondary), var(--beta-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: beta-testers-gradient 6s ease infinite;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(110, 45, 232, 0.2);
    position: relative;
}

@keyframes beta-testers-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.beta-testers-title::after {
    content: "BETA";
    position: absolute;
    right: -65px;
    background: var(--beta-accent);
    color: white;
    font-size: 1rem;
    padding: 4px 12px;
    border-radius: 8px;
    transform: rotate(12deg);
    animation: beta-testers-pulse 2s infinite;
    box-shadow: 0 0 15px rgba(255, 45, 158, 0.7);
}

@keyframes beta-testers-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* New intro paragraph style */
.beta-testers-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.0rem !important;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(110, 45, 232, 0.1), rgba(0, 194, 255, 0.1));
    padding: 1.8rem 2rem;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.beta-testers-intro:hover {
    transform: translateY(-5px);
}

.beta-testers-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--beta-primary), var(--beta-secondary));
    opacity: 0.05;
    border-radius: 18px;
    z-index: -1;
}

/* Cards */
.beta-testers-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.beta-testers-card {
    background: rgba(12, 14, 22, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.beta-testers-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--beta-primary), var(--beta-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.beta-testers-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), var(--beta-glow);
}

.beta-testers-card:hover::before {
    opacity: 1;
}

.beta-testers-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.beta-testers-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--beta-primary), var(--beta-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(110, 45, 232, 0.3);
}

.beta-testers-icon {
    font-size: 1.5rem;
    color: white;
}

/* Steps */
.beta-testers-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beta-testers-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 10px;
}

.beta-testers-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--beta-primary), transparent);
}

.beta-testers-step-number {
    background: linear-gradient(45deg, var(--beta-primary), var(--beta-secondary));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 194, 255, 0.3);
    z-index: 1;
}

.beta-testers-step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.beta-testers-step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.beta-testers-step-content a {
    color: var(--beta-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.beta-testers-step-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--beta-secondary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.beta-testers-step-content a:hover {
    color: var(--beta-accent);
    text-shadow: 0 0 8px rgba(0, 194, 255, 0.5);
}

.beta-testers-step-content a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    background: var(--beta-accent);
}

/* Checklist */
.beta-testers-checklist {
    margin-top: 1.5rem;
}

.beta-testers-checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.beta-testers-checklist-item:hover {
    transform: translateX(5px);
}

.beta-testers-checklist-icon {
    color: var(--beta-success);
    margin-right: 15px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.beta-testers-checklist-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Common section styles */
.beta-testers-section {
    border-radius: 20px;
    padding: 2.2rem 2.2rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Purple section style - default and used for Important Request */
.beta-testers-section-blue {
    background: linear-gradient(135deg, rgba(110, 45, 232, 0.1), rgba(0, 194, 255, 0.1));
    border: 1px solid rgba(110, 45, 232, 0.2);
}

.beta-testers-section-purple {
    background: linear-gradient(135deg, rgba(140, 50, 255, 0.2), rgba(90, 0, 180, 0.1));
    border: 1px solid rgba(110, 45, 232, 0.2);
}

/* Red section style for Effect Issues */
.beta-testers-section-red {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1), rgba(255, 89, 89, 0.1));
    border: 1px solid rgba(255, 45, 45, 0.2);
}

/* Orange section style for Fixed Issues */
.beta-testers-section-orange {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 119, 0, 0.1));
    border: 1px solid rgba(255, 153, 0, 0.2);
}

.beta-testers-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.beta-testers-section-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Purple icon - default and used for Important Request */
.beta-testers-icon-purple {
    background: linear-gradient(135deg, var(--beta-accent), var(--beta-primary));
    box-shadow: 0 8px 20px rgba(255, 45, 158, 0.25);
}

/* Red icon for Effect Issues */
.beta-testers-icon-red {
    background: linear-gradient(135deg, #ff2d2d, #ff5959);
    box-shadow: 0 8px 20px rgba(255, 45, 45, 0.25);
}

/* Orange icon for Fixed Issues */
.beta-testers-icon-orange {
    background: linear-gradient(135deg, #ff9900, #ff6600);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.25);
}

.beta-testers-section h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.beta-testers-section-content {
    flex: 1;
}

.beta-testers-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.beta-testers-section p:last-child {
    margin-bottom: 0;
}

/* Footer */        
.beta-testers-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Fix for the same width Discord/Contact buttons */
.beta-testers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 200px;
    justify-content: center;
}

.beta-testers-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--beta-primary), var(--beta-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.beta-testers-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.beta-testers-btn:hover::before {
    opacity: 0.7;
}

.beta-testers-btn-icon {
    font-size: 1.2rem;
}

.beta-testers-highlight {
    color: var(--beta-secondary);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.beta-testers-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--beta-secondary);
    box-shadow: var(--beta-glow);
}

.beta-testers-rocket-trail {
    display: flex;
    justify-content: center;
    margin: -1rem auto 0;
    overflow: hidden;
    height: 60px;
    width: 80%;
    position: relative;
    max-width: 500px;
}

.beta-testers-rocket-horizontal {
    font-size: 2rem;
    position: absolute;
    left: 50%;
    animation: beta-testers-rocketFly 12s ease-in-out infinite;
}

@keyframes beta-testers-rocketFly {
    0% { 
        transform: translateX(-100px) translateY(0) rotate(90deg);
    }
    15% { 
        transform: translateX(-60px) translateY(-10px) rotate(95deg);
    }
    25% { 
        transform: translateX(-20px) translateY(5px) rotate(85deg);
    }
    40% { 
        transform: translateX(80px) translateY(-8px) rotate(90deg);
    }
    50% { 
        transform: translateX(100px) translateY(0) rotate(270deg);
    }
    65% { 
        transform: translateX(60px) translateY(12px) rotate(265deg);
    }
    75% { 
        transform: translateX(20px) translateY(-5px) rotate(275deg);
    }
    90% { 
        transform: translateX(-80px) translateY(8px) rotate(270deg);
    }
    100% { 
        transform: translateX(-100px) translateY(0) rotate(90deg);
    }
}

/* Info cards grid */
.beta-testers-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.beta-testers-issue {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.beta-testers-issue:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.beta-testers-issue-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.beta-testers-issue-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.beta-testers-issue-solution {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.beta-testers-issue-eta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.beta-testers-issue-eta-unknown {
    color: rgba(255, 183, 0, 0.8);
}

/* Files listing */
.beta-testers-files {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.beta-testers-file {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.beta-testers-file-number {
    background: linear-gradient(45deg, var(--beta-primary), var(--beta-secondary));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.beta-testers-file-name {
    font-family: 'Courier New', monospace;
    color: var(--beta-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Fix for the note text on mobile */
.beta-testers-note-text {
    display: inline;
    white-space: normal;
}

/* Main sections spacing */
.beta-testers-main-section {
    margin-top: 2rem;
}

.beta-testers-card-thanks {
    margin-top: 2rem;
    padding: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .beta-testers-cards, .beta-testers-info-cards {
        grid-template-columns: 1fr;
    }
    
    .beta-testers-content {
        padding: 2rem;
    }
    
    .beta-testers-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .beta-testers-title {
        font-size: 3rem;
    }
    
    .beta-testers-title::after {
        position: static;
        display: inline-block;
        margin-left: 10px;
        transform: rotate(0);
        vertical-align: middle;
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    /* Reduce padding in mobile view for all containers */
    .beta-testers-card, 
    .beta-testers-section {
        padding: 1.2rem;
    }
    
    .beta-testers-intro {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .beta-testers-content {
        padding: 1.5rem;
    }
    
    .beta-testers-card h2 {
        font-size: 1.6rem;
    }
    
    .beta-testers-section h3 {
        font-size: 1.5rem;
    }
    
    .beta-testers-step-content h3 {
        font-size: 1.2rem;
    }
    
    /* Reduced vertical gaps between sections */
    .beta-testers-cards, .beta-testers-info-cards {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Reduced padding on buttons in mobile */
    .beta-testers-btn {
        padding: 0.7rem 1.2rem;
        width: 140px;
    }
}