* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

.battleFieldContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quantumNavigationBar {
    background: linear-gradient(90deg, #ffffff 0%, rgba(59, 130, 246, 0.05) 50%, #ffffff 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.cyberShipBridge {
    padding: 15px 0;
}

.logoQuantumCore {
    display: flex;
    align-items: center;
    gap: 15px;
}

.battleStationIcon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
}

.battleStationIcon:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
}

.galaxyTitleLink {
    font-size: 24px;
    font-weight: bold;
    color: #3b82f6;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.galaxyTitleLink:hover {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.galaxyTitleLink::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.galaxyTitleLink:hover::after {
    width: 100%;
}

.commandCenterLaunch {
    margin-top: 80px;
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.battleFieldContainer {
    position: relative;
    z-index: 2;
}

.combatDataGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 500px;
    position: relative;
}

.leftTextPanel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hologramGameplayFrame {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rightDescriptionPanel {
    display: flex;
    align-items: center;
    text-align: left;
}

.warCryTitle {
    font-size: 48px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    position: relative;
}

.warCryTitle::before {
    content: '>';
    position: absolute;
    left: -30px;
    color: #8b5cf6;
    animation: blinkCursor 1.5s infinite;
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.leftTextPanel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.rightDescriptionPanel {
    display: flex;
    align-items: center;
    text-align: left;
}

.tacticalDescription {
    font-size: 18px;
    color: #4f46e5;
    line-height: 1.8;
}

.deploymentButtonsArray {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primaryLaunchButton, .secondaryEngageButton {
    padding: 15px 30px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primaryLaunchButton {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #3b82f6;
}

.primaryLaunchButton:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

.secondaryEngageButton {
    background: transparent;
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.secondaryEngageButton:hover {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
}



.smartphoneHologram {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border: 3px solid #3b82f6;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    animation: floatPhone 3s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.gameplayHoloDisplay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #8b5cf6;
}

.smartphoneHologram::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
}

.smartphoneHologram::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
}

.atmosFxBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: 
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridFlow 8s linear infinite;
}

@keyframes gridFlow {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.nebulaMonsterwaves {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(239, 68, 68, 0.6) 10%,
        rgba(239, 68, 68, 0.8) 50%,
        rgba(239, 68, 68, 0.6) 90%,
        transparent 100%
    );
    transform: translateY(-50%);
    animation: enemyWaveMove 3s ease-in-out infinite;
}

.nebulaMonsterwaves::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(34, 197, 94, 0.6) 20%,
        rgba(34, 197, 94, 0.8) 60%,
        rgba(34, 197, 94, 0.6) 80%,
        transparent 100%
    );
    animation: enemyWaveMove 3s ease-in-out infinite 1s;
}

.nebulaMonsterwaves::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(139, 92, 246, 0.6) 15%,
        rgba(139, 92, 246, 0.8) 70%,
        rgba(139, 92, 246, 0.6) 85%,
        transparent 100%
    );
    animation: enemyWaveMove 3s ease-in-out infinite 0.5s;
}

@keyframes enemyWaveMove {
    0% { 
        transform: translateX(-100%) translateY(-50%);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
}



.arsenalFeaturesHub, .statisticsCommandModule, .gameplayBriefingModule, 
.testimonialNeuralNet, .finalDeploymentZone {
    padding: 80px 0;
    position: relative;
}

.sectorCommandTitle {
    font-size: 36px;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.sectorCommandTitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.tacticalGridMatrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.weaponSystemCard {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.weaponSystemCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.weaponSystemCard:hover::before {
    left: 100%;
}

.weaponSystemCard:hover {
    border-color: #3b82f6;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.technologyIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.weaponSystemCard:hover .technologyIcon {
    transform: rotate(360deg);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.weaponSystemCard h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
}

.weaponSystemCard p {
    color: #64748b;
    line-height: 1.6;
}

.statisticsCommandModule {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.metricsHoloGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.combatStatCard {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #3b82f6;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.combatStatCard:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.metricDisplayCore {
    font-size: 48px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.statDescription {
    color: #64748b;
    font-size: 16px;
}

.strategyPresentationGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tacticalImageFrame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.strategyHoloImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.tacticalImageFrame:hover .strategyHoloImage {
    transform: scale(1.1);
}

.missionIntelPanel h2 {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.missionIntelPanel p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

.tacticalAdvantagesList {
    list-style: none;
}

.tacticalAdvantagesList li {
    padding: 10px 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tacticalAdvantagesList i {
    color: #22c55e;
    font-size: 18px;
}

.testimonialNeuralNet {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.neuralTestimonialGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.playerDataNode {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.playerDataNode:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}

.playerAvatarHolo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3b82f6;
    margin-bottom: 15px;
}

.playerAvatarHolo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playerFeedbackData h4 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 18px;
}

.playerFeedbackData p {
    color: #64748b;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.ratingStarMatrix {
    color: #fbbf24;
    font-size: 18px;
}

.finalDeploymentZone {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.missionCompletionCard {
    max-width: 600px;
    margin: 0 auto;
}

.missionCompletionCard h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.missionCompletionCard p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.megaLaunchButton {
    background: linear-gradient(45deg, #ffffff, #f8fafc);
    color: #3b82f6;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.megaLaunchButton:hover {
    background: linear-gradient(45deg, #f8fafc, #ffffff);
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.terminalDataFooter {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 60px 0 20px;
}

.footerInfoMatrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.companyDataBlock h4, .contactProtocolBlock h4 {
    font-size: 20px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.footerNavigationArray {
    list-style: none;
}

.footerNavigationArray li {
    margin-bottom: 10px;
}

.footerNavigationArray a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footerNavigationArray a:hover {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.contactDataStream p {
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactDataStream i {
    color: #8b5cf6;
    width: 20px;
}

.copyrightTerminalLine {
    border-top: 1px solid #475569;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

.legalDocumentInterface {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.documentTerminalWindow {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #3b82f6;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.legalProtocolTitle {
    font-size: 36px;
    color: #3b82f6;
    margin-bottom: 10px;
    text-align: center;
}

.lastUpdateTimestamp {
    text-align: center;
    color: #64748b;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.legalContentMatrix {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.termsSection, .privacySection, .cookieSection {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.termsSection:hover, .privacySection:hover, .cookieSection:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.termsSection h2, .privacySection h2, .cookieSection h2 {
    color: #3b82f6;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
}

.termsSection h3, .privacySection h3, .cookieSection h3 {
    color: #8b5cf6;
    font-size: 18px;
    margin: 20px 0 10px;
}

.termsSection p, .privacySection p, .cookieSection p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legalPointsList {
    list-style: none;
    margin: 15px 0;
}

.legalPointsList li {
    color: #64748b;
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
}

.legalPointsList li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 12px;
}

.contactInfoBox {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px solid #3b82f6;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.contactInfoBox p {
    color: #1e293b;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactInfoBox i {
    color: #3b82f6;
    width: 20px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .combatDataGrid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .rightDescriptionPanel {
        grid-column: 1 / -1;
        text-align: center;
        justify-content: center;
        margin-top: 20px;
    }
    
    .leftTextPanel {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .combatDataGrid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .leftTextPanel {
        order: 2;
        align-items: center;
        text-align: center;
    }
    
    .hologramGameplayFrame {
        order: 1;
    }
    
    .rightDescriptionPanel {
        order: 3;
        text-align: center;
        justify-content: center;
    }
    
    .strategyPresentationGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .warCryTitle {
        font-size: 36px;
    }
    
    .deploymentButtonsArray {
        justify-content: center;
    }
    
    .smartphoneHologram {
        width: 250px;
        height: 500px;
    }
    
    .tacticalGridMatrix {
        grid-template-columns: 1fr;
    }
    
    .metricsHoloGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .neuralTestimonialGrid {
        grid-template-columns: 1fr;
    }
    
    .footerInfoMatrix {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .documentTerminalWindow {
        padding: 20px;
        margin: 0 10px;
    }
    
    .legalContentMatrix {
        max-height: none;
    }
}

@media (max-width: 480px) {
    .battleFieldContainer {
        padding: 0 15px;
    }
    
    .primaryLaunchButton, .secondaryEngageButton {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .warCryTitle {
        font-size: 28px;
    }
    
    .sectorCommandTitle {
        font-size: 28px;
    }
    
    .metricsHoloGrid {
        grid-template-columns: 1fr;
    }
    
    .metricDisplayCore {
        font-size: 36px;
    }
}



/* Gaming Gallery Visual Showcase Styles */
.visualShowcaseArray {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.holographicImageMatrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gameVisualCard {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.gameVisualCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.gameVisualCard:hover::before {
    left: 100%;
}

.gameVisualCard:hover {
    border-color: #3b82f6;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.imageHologramFrame {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #3b82f6;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
}

.gameVisualCard:hover .imageHologramFrame {
    border-color: #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.gameplayScreenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) saturate(1.1);
}

.gameVisualCard:hover .gameplayScreenshot {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.3);
}

.holoOverlayEffect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(59, 130, 246, 0.1) 25%,
        transparent 50%,
        rgba(139, 92, 246, 0.1) 75%,
        transparent 100%
    );
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gameVisualCard:hover .holoOverlayEffect {
    opacity: 1;
    animation: holoScan 2s ease-in-out infinite;
}

@keyframes holoScan {
    0% {
        background-position: -100% -100%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: -100% -100%;
    }
}

.imageHologramFrame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(59, 130, 246, 0.03) 2px,
            rgba(59, 130, 246, 0.03) 4px
        );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gameVisualCard:hover .imageHologramFrame::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .holographicImageMatrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .imageHologramFrame {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .holographicImageMatrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .imageHologramFrame {
        height: 150px;
    }
    
    .gameVisualCard {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .holographicImageMatrix {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .imageHologramFrame {
        height: 200px;
    }
    
    .visualShowcaseArray {
        padding: 60px 0;
    }
}