/* Webstore Section */
.webstore {
    padding: 6rem 4rem;
    position: relative;
    overflow: visible;
}

.webstore::before,
.webstore::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.webstore::before {
    top: -10%;
    left: -300px;
    animation: redGlowLeft 4s ease-in-out infinite;
}

.webstore::after {
    bottom: 10%;
    right: -400px;
    animation: redGlowRight 5s ease-in-out infinite;
}

@keyframes redGlowLeft {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes redGlowRight {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.webstore-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Benefits Section (Left Side) */
.webstore-benefits {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.webstore-benefits-title {
    font-family: 'BankGothic', 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.webstore-benefits-title::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 10px;
    height: 10px;
    background: 
        /* Top-left L bracket */
        linear-gradient(var(--color-red), var(--color-red)) 0 0/10px 2px,
        linear-gradient(var(--color-red), var(--color-red)) 0 0/2px 10px;
    background-repeat: no-repeat;
}

.webstore-benefits-subtitle {
    font-family: 'Oxanium', monospace;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 500px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12);
}

.benefit-emojis {
    position: absolute;
    left: -180px;
    top: -20px;
    transform: rotate(-45deg);
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    mask: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 70%, transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 70%, transparent 100%);
}

.emoji-row {
    display: block;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}



.benefit-text {
    position: relative;
    z-index: 2;
}

.benefit-text h3 {
    font-family: 'Oxanium', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(255, 255, 255, 0.3);
}

.benefit-text p {
    font-family: 'Oxanium', monospace;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Unique outline colors for each benefit */
.benefit-reserved-slot {
    border-color: rgba(249, 115, 22, 0.4); /* Orange - reserved/priority access */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(249, 115, 22, 0.3);
}

.benefit-fittr {
    border-color: rgba(59, 130, 246, 0.4); /* Blue - customization/personalization */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(59, 130, 246, 0.3);
}

.benefit-noclip {
    border-color: rgba(147, 51, 234, 0.4); /* Purple - mystical/supernatural */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(147, 51, 234, 0.3);
}

.benefit-cosmetics {
    border-color: rgba(251, 191, 36, 0.4); /* Gold - premium/luxury */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(251, 191, 36, 0.3);
}

.benefit-economy {
    border-color: rgba(34, 197, 94, 0.4); /* Green - wealth/growth */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(34, 197, 94, 0.3);
}

.webstore-disclaimer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.webstore-disclaimer-text {
    font-family: 'Oxanium', monospace;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.2px;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}




/* Call-to-Action Section (Right Side) */
.webstore-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    position: relative;
    height: 100%; /* Match the height of benefits section */
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    height: 100%;
}

.cta-title {
    font-family: 'BankGothic', 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 10px;
    height: 10px;
    background: 
        /* Bottom-right L bracket */
        linear-gradient(var(--color-red), var(--color-red)) 0 100%/10px 2px,
        linear-gradient(var(--color-red), var(--color-red)) 100% 0/2px 10px;
    background-repeat: no-repeat;
}

.cta-subtitle {
    font-family: 'Oxanium', monospace;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 400px;
    line-height: 1.5;
}

.supporter-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.supporter-count {
    font-family: 'Oxanium', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-red);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 0, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1;
}

.supporter-label {
    font-family: 'Oxanium', monospace;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.webstore-button {
    font-family: 'Oxanium', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.webstore-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6), transparent);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.webstore-button:hover {
    background: rgba(255, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(255, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.webstore-button:hover::before {
    opacity: 1;
}

.webstore-button:active {
    transform: translateY(-1px);
}


.caption-title {
    font-family: 'Oxanium', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.3rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.1;
    text-align: left;
}

.caption-description {
    font-family: 'Oxanium', monospace;
    font-size: 0.85rem;
    color: var(--color-light-gray);
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    text-align: left;
}


/* Scattered Decorative Images */
.webstore-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.decoration-image {
    position: absolute;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.decoration-1 {
    top: 2%;
    left: 8%;
    width: 120px;
    height: 120px;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    top: 15%;
    left: 2%;
    width: 100px;
    height: 100px;
    transform: rotate(-20deg);
    animation: float 8s ease-in-out infinite reverse;
}

.decoration-3 {
    top: 2%;
    right: 8%;
    width: 80px;
    height: 80px;
    transform: rotate(25deg);
    animation: float 7s ease-in-out infinite;
}

.decoration-4 {
    top: 15%;
    right: 2%;
    width: 100px;
    height: 100px;
    transform: rotate(-15deg);
    animation: float 9s ease-in-out infinite;
}

.decoration-svg,
.decoration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Make zmod logo red */
.decoration-svg[src*="zmod_logo"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--initial-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--initial-rotation, 0deg));
    }
}

.decoration-1 {
    --initial-rotation: 15deg;
}

.decoration-2 {
    --initial-rotation: -20deg;
}

.decoration-3 {
    --initial-rotation: 25deg;
}

.decoration-4 {
    --initial-rotation: -15deg;
}

/* Responsive Design */
@media (max-width: 992px) {
    .webstore {
        padding: 5rem 3rem;
    }
    
    .webstore-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .webstore-benefits {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .webstore-benefits-title {
        text-align: center;
        margin-bottom: 0;
    }
    
    /* Hide all decorative brackets on mobile */
    .webstore-benefits-title::before,
    .webstore-benefits-title::after {
        display: none;
    }
    
    .cta-title::before,
    .cta-title::after {
        display: none;
    }
    
    .webstore-cta {
        align-items: center;
        text-align: center;
        height: auto; /* Reset height for mobile */
    }
    
    .cta-content {
        align-items: center;
        height: auto; /* Reset height for mobile */
        display: flex;
        flex-direction: column;
    }
    
    /* Reorder CTA content children on mobile */
    .cta-title {
        order: 2;
    }
    
    .cta-subtitle {
        order: 3;
    }
    
    .supporter-stat {
        order: 4;
    }
    
    .webstore-button {
        order: 5;
    }
    
    

    
    /* Hide decorations on mobile */
    .webstore-decorations {
        display: none;
    }
    
    .webstore::before,
    .webstore::after {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    }
    
    .webstore::before {
        left: -300px;
    }
    
    .webstore::after {
        right: -300px;
    }
    
    .supporter-count {
        font-size: 2.5rem;
    }
    
    .supporter-label {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
    
    

    
    .benefit-text h3 {
        font-size: 1.2rem;
    }
    
    .benefit-text p {
        font-size: 0.95rem;
    }
    
    .webstore-benefits-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .benefits-list {
        text-align: left;
        width: 100%;
        max-width: 600px;
    }
    
    
    .webstore-disclaimer-text {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .benefit-emojis {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        opacity: 0.08;
    }
}

@media (max-width: 992px) {
    /* Override base supporter-stat alignment for mobile/tablet */
    .supporter-stat {
        align-items: center !important;
    }
    
    
    .webstore {
        padding: 4rem 2rem;
    }
    
    .webstore-content {
        gap: 3rem;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
    }
    
    .cta-title {
        order: 2;
    }
    
    .cta-subtitle {
        order: 3;
    }
    
    .supporter-stat {
        order: 4;
        align-items: center !important;
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    
    .supporter-count {
        text-align: center !important;
        align-self: center !important;
        width: 100%;
    }
    
    .supporter-label {
        text-align: center !important;
        align-self: center !important;
        width: 100%;
    }
    
    .webstore-button {
        order: 5;
    }
    
    

    
    .webstore-decorations {
        display: none;
    }
    
    .benefits-list {
        gap: 1.5rem;
        align-items: center;
        max-width: 100%;
    }
    
    .benefit-item {
        padding: 1rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
    }
    
    .benefit-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    
    .benefit-text h3 {
        font-size: 1.1rem;
    }
    
    .benefit-text p {
        font-size: 0.9rem;
    }
    
    .webstore-button {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .webstore-benefits-subtitle {
        font-size: 1.05rem;
        margin-bottom: 0;
        text-align: center;
        max-width: 100%;
    }
    

    
    
    .supporter-count {
        font-size: 2rem;
    }
    
    .supporter-label {
        font-size: 0.85rem;
    }
    
    /* Hide decorations on smaller screens */
    .webstore-decorations {
        display: none;
    }
    
    .webstore::before,
    .webstore::after {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    }
    
    .webstore::before {
        left: -200px;
    }
    
    .webstore::after {
        right: -200px;
    }
    
    .webstore-disclaimer-text {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .benefit-emojis {
        opacity: 0.06;
    }
}

@media (max-width: 480px) {
    .webstore {
        padding: 3rem 1rem;
    }
    
    .webstore-content {
        gap: 2.5rem;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
    }
    
    .cta-title {
        order: 2;
    }
    
    .cta-subtitle {
        order: 3;
    }
    
    .supporter-stat {
        order: 4;
        align-items: center !important;
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    
    .supporter-count {
        text-align: center !important;
        align-self: center !important;
        width: 100%;
    }
    
    .supporter-label {
        text-align: center !important;
        align-self: center !important;
        width: 100%;
    }
    
    .webstore-button {
        order: 5;
    }
    
    

    
    .webstore-decorations {
        display: none;
    }
    
    .benefits-list {
        gap: 1rem;
        align-items: center;
        max-width: 100%;
    }
    
    .benefit-item {
        padding: 0.8rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
    }
    
    .benefit-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    
    .benefit-text h3 {
        font-size: 1rem;
    }
    
    .benefit-text p {
        font-size: 0.85rem;
    }
    
    .webstore-button {
        font-size: 0.9rem;
        padding: 0.8rem 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .webstore-benefits-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
        text-align: center;
        max-width: 100%;
    }
    

    
    
    .supporter-count {
        font-size: 1.8rem;
    }
    
    .supporter-label {
        font-size: 0.8rem;
    }
    
    /* Keep decorations hidden on mobile */
    .webstore-decorations {
        display: none;
    }
    
    .webstore::before,
    .webstore::after {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 0, 0, 0.06) 0%, transparent 70%);
    }
    
    .webstore::before {
        left: -150px;
    }
    
    .webstore::after {
        right: -150px;
    }
    
    .webstore-disclaimer-text {
        font-size: 0.65rem;
        text-align: center;
    }
    
    .benefit-emojis {
        opacity: 0.04;
    }
    
    .emoji-row {
        font-size: 1.2rem;
        line-height: 1.8rem;
        letter-spacing: 0.3rem;
    }
}

@media (max-width: 360px) {
    .webstore {
        padding: 2.5rem 0.5rem;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
    }
    
    .cta-title {
        order: 2;
    }
    
    .cta-subtitle {
        order: 3;
    }
    
    .supporter-stat {
        order: 4;
        align-items: center !important;
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    
    .supporter-count {
        text-align: center !important;
        align-self: center !important;
        width: 100%;
    }
    
    .supporter-label {
        text-align: center !important;
        align-self: center !important;
        width: 100%;
    }
    
    .webstore-button {
        order: 5;
    }
    
    

    
    .webstore-decorations {
        display: none;
    }
    
    .benefits-list {
        align-items: center;
        max-width: 100%;
    }
    
    .benefit-item {
        padding: 0.6rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
    }
    
    .benefit-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    
    .webstore-button {
        font-size: 0.8rem;
        padding: 0.7rem 1.5rem;
    }
    
    .supporter-count {
        font-size: 1.5rem;
    }
    
    .supporter-label {
        font-size: 0.75rem;
    }
    
    .webstore-benefits-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0;
        text-align: center;
        max-width: 100%;
    }
    

    
    
    .webstore-disclaimer-text {
        font-size: 0.6rem;
        text-align: center;
    }
    
    .webstore::before,
    .webstore::after {
        display: none;
    }
    
    .benefit-emojis {
        opacity: 0.03;
    }
    
    .emoji-row {
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: 0.2rem;
    }
}