:root {
    --primary-color: #00ff88;
    --secondary-color: #00a6ff;
    --danger-color: #ff0055;
    --warning-color: #ffbb00;
    --success-color: #00ff88;
    --background-color: #0a0a0a;
    --panel-background: rgba(20, 20, 20, 0.95);
    --border-color: rgba(0, 255, 136, 0.2);
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a1f;
    color: var(--text-color);
    line-height: 1.6;
    overflow: hidden;
}

/* Background Effect */
#webEffect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

/* Mode Toggle */
.mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.mode-toggle button {
    background: var(--panel-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-toggle button.active {
    background: var(--primary-color);
    color: var(--background-color);
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    text-align: center;
}

.fingerprint-animation {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.fingerprint-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    animation: scan 1.5s ease-in-out infinite;
}

@keyframes scan {
    0% {
        stroke-dashoffset: 377;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -377;
    }
}

.scan-progress {
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 4px;
    background: var(--primary-color);
    width: 0;
    transition: width 0.3s ease;
}

#scanText {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

/* Risk Score Container */
.risk-score-container {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.risk-score {
    position: relative;
    width: 160px;
    height: 160px;
    background: var(--panel-background);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.score-circle {
    position: relative;
    width: 100%;
    height: 100%;
}

.score-circle svg {
    width: 100%;
    height: 100%;
}

.score-circle-bg {
    fill: none;
    stroke: rgba(0, 255, 136, 0.1);
    stroke-width: 8;
}

.score-circle-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    transform-origin: center;
    transform: rotate(-90deg);
}

.score-text {
    font-size: 32px;
    font-weight: bold;
    fill: var(--text-color);
}

.score-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.risk-score:hover .score-circle {
    transform: rotateY(10deg) rotateX(5deg);
}

.score-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(0, 255, 136, 0.2) 0%,
        transparent 70%
    );
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Panels Container */
.panels-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px 20px;
    height: calc(100vh - 200px);
    min-height: 400px;
}

/* Panels */
.panel {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 32px rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    padding: 15px;
    animation: fadeIn 0.5s ease;
    height: 100%;
    max-height: calc(100vh - 220px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 20px rgba(0, 255, 136, 0.15);
}

/* Glowing borders */
.panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 12px;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 255, 136, 0.1) 45%,
        rgba(0, 255, 136, 0.2) 50%,
        rgba(0, 255, 136, 0.1) 55%,
        transparent 100%
    );
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

/* Decorative corner accents */
.panel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    top: 5px;
    left: 5px;
    opacity: 0.5;
}

.panel h2::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    bottom: 5px;
    right: 5px;
    opacity: 0.5;
}

.panel h2 {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.panel h2 i {
    color: var(--primary-color);
}

/* Panel Actions */
.panel-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 5px;
    border-top: 1px solid var(--border-color);
}

.panel-actions button {
    flex: 1;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}

.panel-actions button:hover {
    background: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

.panel-actions button i {
    font-size: 14px;
}

/* Fingerprint Panel */
.fingerprint-hash {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hash-value {
    font-family: 'Roboto Mono', monospace;
    word-break: break-all;
    font-size: 12px;
    color: var(--primary-color);
    padding: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.hash-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hash-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hash-info p:last-child {
    border-bottom: none;
}

.hash-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* System Information */
.info-group {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-group:hover {
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(0, 255, 136, 0.1);
}

.info-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(0, 255, 136, 0.03) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-group h3 {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-group p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-group i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Location Panel */
#map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid var(--border-color);
    background: var(--panel-background);
}

.location-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.location-details i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .panels-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-panel {
        grid-column: 1 / span 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
        overflow-y: auto;
    }
    
    .panels-container {
        grid-template-columns: 1fr;
        height: auto;
        padding: 0 10px;
    }
    
    .panel {
        height: auto;
        min-height: 300px;
    }
    
    #map {
        height: 180px;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto 1fr;
        padding-top: 60px;
    }
    
    .risk-score {
        grid-column: 1;
        grid-row: 1;
    }
    
    .security-panel {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    
    .location-panel {
        grid-column: 1 / span 2;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        padding-top: 100px;
        height: 100vh;
        overflow-y: auto;
    }
    
    .risk-score,
    .security-panel,
    .system-info-panel,
    .location-panel {
        grid-column: 1;
    }
    
    .risk-score {
        grid-row: 1;
    }
    
    .security-panel {
        grid-row: 2;
    }
    
    .system-info-panel {
        grid-row: 3;
    }
    
    .location-panel {
        grid-row: 4;
    }
    
    .mode-toggle {
        top: 100px;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* System Information */
.info-group {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.info-group h3 {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-group p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-group i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Fingerprint Display */
.fingerprint-hash {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.hash-value {
    font-family: 'Roboto Mono', monospace;
    word-break: break-all;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hash-info {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Location Information */
.location-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.location-details i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Error Messages */
.error-message {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.error-message i {
    color: var(--danger-color);
}

/* Loading States */
.loading-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 20px;
}

.loading-message i {
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Panel Navigation */
.panel-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    overflow: hidden;
}

.panel-nav button {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.panel-nav button i {
    font-size: 14px;
}

.panel-nav button::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.panel-nav button:hover {
    color: var(--primary-color);
}

.panel-nav button.active {
    color: var(--primary-color);
}

.panel-nav button.active::after {
    transform: scaleX(1);
}

.panel-nav button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.panel-nav button:hover::before {
    transform: translateX(100%);
}

/* Panel Content */
.panel-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.view-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    padding: 10px;
    overflow-y: auto;
}

.view-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* System Information Panel */
.system-info-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.system-info-panel .panel-content {
    flex: 1;
    overflow: hidden;
}

/* Info Groups */
.info-group {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.info-group:hover {
    transform: translateX(5px);
}

.info-group h3 {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-group p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-group i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Custom Scrollbar */
.view-content::-webkit-scrollbar {
    width: 6px;
}

.view-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.view-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Ensure content is visible when active */
#systemOverview.active,
#browserInfo.active,
#hardwareInfo.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

/* 3D Effects and Decorations */
.panel {
    background: var(--panel-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease;
    height: 100%;
    max-height: calc(100vh - 220px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 0 15px rgba(0, 255, 136, 0.1);
}

.panel:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 20px rgba(0, 255, 136, 0.15);
}

/* Glowing borders */
.panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 12px;
    background: linear-gradient(45deg, 
        transparent 0%,
        rgba(0, 255, 136, 0.1) 45%,
        rgba(0, 255, 136, 0.2) 50%,
        rgba(0, 255, 136, 0.1) 55%,
        transparent 100%
    );
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

/* Decorative corner accents */
.panel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    top: 5px;
    left: 5px;
    opacity: 0.5;
}

.panel h2::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    bottom: 5px;
    right: 5px;
    opacity: 0.5;
}

/* Info group enhancements */
.info-group {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-group:hover {
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(0, 255, 136, 0.1);
}

.info-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(0, 255, 136, 0.03) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

/* Animated background patterns */
.panel-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, 
            rgba(0, 255, 136, 0.03) 0%, 
            transparent 20%),
        radial-gradient(circle at 90% 80%, 
            rgba(0, 166, 255, 0.03) 0%, 
            transparent 20%);
    opacity: 0.5;
    z-index: -1;
    animation: patternMove 20s linear infinite;
}

/* Animations */
@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Risk Score Enhancement */
.risk-score {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.score-circle {
    transition: transform 0.3s ease;
}

.risk-score:hover .score-circle {
    transform: rotateY(10deg) rotateX(5deg);
}

.score-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(0, 255, 136, 0.2) 0%,
        transparent 70%
    );
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Navigation Enhancement */
.panel-nav button {
    position: relative;
    overflow: hidden;
}

.panel-nav button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.panel-nav button:hover::before {
    transform: translateX(100%);
}

/* Background Canvases */
#threejsScene,
#matrixBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#threejsScene {
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: blur(1px);
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 31, 0.8),
        rgba(10, 10, 31, 0.95)
    );
}

#matrixBackground {
    opacity: 0.15;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1);
}

/* Add ambient light effect */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 255, 136, 0.03) 0%,
        transparent 60%
    );
    z-index: 1;
    mix-blend-mode: screen;
    animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
} 