/* ========== BUTTONS WITH CORNER BRACKETS ========== */
.btn-bracket {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #9a9a9a;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

/* Corner brackets */
.btn-bracket::before,
.btn-bracket::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

/* Top-left bracket */
.btn-bracket::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
}

/* Bottom-right bracket */
.btn-bracket::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
}

.btn-bracket:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.btn-bracket:hover::before {
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    border-color: rgba(255,255,255,0.8);
}

.btn-bracket:hover::after {
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-color: rgba(255,255,255,0.8);
}

/* Red version for main Download button */
.btn-bracket-red {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.15) 0%, rgba(139, 38, 53, 0.1) 100%);
    border: 1px solid #f44444;
    color: #f44444;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-bracket-red::before,
.btn-bracket-red::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.btn-bracket-red::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid #f44444;
    border-left: 2px solid #f44444;
}

.btn-bracket-red::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid #f44444;
    border-right: 2px solid #f44444;
}

.btn-bracket-red:hover {
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.4) 0%, rgba(139, 38, 53, 0.3) 100%);
    border-color: #ff5555;
    color: #fff;
}

.btn-bracket-red:hover::before {
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    border-color: #ff5555;
}

.btn-bracket-red:hover::after {
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-color: #ff5555;
}

/* Primary button (red) */
.btn-premium-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.15) 0%, rgba(139, 38, 53, 0.1) 100%);
    border: 1px solid #f44444;
    color: #f44444;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-premium-primary::before,
.btn-premium-primary::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.btn-premium-primary::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid #f44444;
    border-left: 2px solid #f44444;
}

.btn-premium-primary::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid #f44444;
    border-right: 2px solid #f44444;
}

.btn-premium-primary:hover {
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.4) 0%, rgba(139, 38, 53, 0.3) 100%);
    border-color: #ff5555;
    color: #fff;
}

.btn-premium-primary:hover::before {
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    border-color: #ff5555;
}

.btn-premium-primary:hover::after {
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-color: #ff5555;
}

/* Secondary button (gray/white) */
.btn-premium-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #9a9a9a;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-premium-secondary::before,
.btn-premium-secondary::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.btn-premium-secondary::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
}

.btn-premium-secondary::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
}

.btn-premium-secondary:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.btn-premium-secondary:hover::before {
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    border-color: rgba(255,255,255,0.8);
}

.btn-premium-secondary:hover::after {
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-color: rgba(255,255,255,0.8);
}

/* ========== SECTION LABEL ========== */
.section-label {
    display: inline-block;
    margin-bottom: 40px;
}

.section-label-text {
    display: inline-block;
    background: rgba(255,255,255,0.03);
    color: #9a9a9a;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ========== BADGES ========== */
.badge-active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-dev {
    background: rgba(244, 68, 68, 0.2);
    color: #f44444;
    border: 1px solid rgba(244, 68, 68, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-testing {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-planning {
    background: rgba(255,255,255,0.06);
    color: #9a9a9a;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: #141414;
    border: 1px solid #2a2a3a;
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: #3a3a4a;
}

/* ========== INFO BOX ========== */
.info-box {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid #2a2a3a;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.75);
    border-radius: 16px;
    z-index: 0;
}

.info-box > * {
    position: relative;
    z-index: 1;
}

.info-box-text {
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-box-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.info-box-tags span {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ========== HERO PREVIEW VIDEO ========== */
.hero-video-wrapper {
    display: inline-block;
    padding: 3px;
    border-radius: 19px;
    background: linear-gradient(45deg, #f44444, #ff6b6b, #f44444, #ff8888, #f44444);
    background-size: 400% 400%;
    animation: rgbBorderGlow 4s ease infinite;
    transform: rotateY(6deg);
    transition: transform 0.4s ease;
}

.hero-video-wrapper:hover {
    transform: rotateY(3deg) scale(1.02);
}

@keyframes rgbBorderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-preview-video {
    display: block;
    border-radius: 16px;
}
