body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #001a1a 0%, #001520 80%, #000a0a 100%);
}

#matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.logo-frame {
    position: relative;
    width: 600px;
    height: 400px;
    border: 6px solid #f9d71c;
    border-radius: 5px;
    box-shadow: 0 0 30px #f9d423, inset 0 0 20px #f9d423;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: visible;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, rgba(25,25,35,0.8), rgba(12,12,20,0.9));
}

/* Cyberpunk grid pattern */
.logo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(249, 212, 35, 0.1) 1px, transparent 1px) 0 0 / 20px 20px,
        linear-gradient(0deg, rgba(249, 212, 35, 0.1) 1px, transparent 1px) 0 0 / 20px 20px;
    z-index: -1;
    opacity: 0.5;
}

/* Cyberpunk corner cuts */
.logo-frame::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #f9d71c;
    clip-path: polygon(
        0% 0%, 20px 0%, 20px 20px, 0% 20px, 
        0% calc(100% - 20px), 20px calc(100% - 20px), 20px 100%, 0% 100%,
        calc(100% - 20px) 100%, calc(100% - 20px) calc(100% - 20px), 100% calc(100% - 20px),
        100% 20px, calc(100% - 20px) 20px, calc(100% - 20px) 0%, 100% 0%, 100% 100%,
        0% 100%, 0% 0%
    );
    box-shadow: 0 0 15px #f9d423;
    z-index: -1;
}

.logo-text {
    font-size: 6rem;
    margin: 0;
    transform: translateZ(10px);
    color: #f9d71c;
    text-shadow: 0 0 10px #f9d423, 0 0 20px rgba(249, 212, 35, 0.5);
    letter-spacing: 3px;
    font-weight: bold;
}

.coming-soon {
    font-size: 1.8rem;
    margin-top: 10px;
    color: #f9d71c;
    transform: translateZ(5px);
    text-shadow: 0 0 5px #f9d423;
    letter-spacing: 2px;
}

/* Circuit lines animation */
@keyframes circuit-flow {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, transparent 95%, rgba(249, 212, 35, 0.5) 95%);
    background-size: 10px 10px;
    animation: circuit-flow 10s linear infinite;
    opacity: 0.2;
    z-index: -1;
}

/* Rice bowl styling - top left corner of frame */
.rice-bowls-container {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    transform-style: preserve-3d;
}

.rice-bowl {
    width: 120px;
    height: 120px;
    position: absolute;
    transform-style: preserve-3d;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 15px rgba(249, 212, 35, 0.5);
    border: 2px solid rgba(249, 212, 35, 0.7);
}

.rice-bowl:nth-child(1) {
    transform: rotate(-10deg) translateZ(40px);
    z-index: 3;
}

.rice-bowl:nth-child(2) {
    transform: rotate(5deg) translateX(40px) translateZ(25px);
    z-index: 2;
}

.rice-bowl:nth-child(3) {
    transform: rotate(20deg) translateX(80px) translateZ(10px);
    z-index: 1;
}

.rice-bowl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* 3D Dice styling */
.dice-container {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 120px;
    transform-style: preserve-3d;
}

.dice {
    width: 60px;
    height: 60px;
    position: absolute;
    transform-style: preserve-3d;
}

.dice:nth-child(1) {
    transform: translateZ(80px) translateX(20px) rotateX(15deg) rotateY(-15deg);
    z-index: 3;
}

.dice:nth-child(2) {
    transform: translateX(-40px) translateZ(40px) rotateX(25deg) rotateY(10deg);
    z-index: 2;
}

.dice:nth-child(3) {
    transform: translateX(-100px) translateY(10px) translateZ(10px) rotateX(5deg) rotateY(20deg);
    z-index: 1;
}

/* Dice faces - with more rounded corners */
.face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #000;
    border: 2px solid #f9d71c;
    box-sizing: border-box;
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(3, 1fr);
    padding: 5px;
    box-shadow: inset 0 0 10px rgba(249, 212, 35, 0.3);
    border-radius: 15px; /* Rounded corners for dice */
}

/* Front face - showing 6 */
.face.front {
    transform: translateZ(30px);
}

/* Back face - showing 1 */
.face.back {
    transform: rotateY(180deg) translateZ(30px);
}

/* Right face - showing 5 */
.face.right {
    transform: rotateY(90deg) translateZ(30px);
}

/* Left face - showing 2 */
.face.left {
    transform: rotateY(-90deg) translateZ(30px);
}

/* Top face - showing 3 */
.face.top {
    transform: rotateX(90deg) translateZ(30px);
}

/* Bottom face - showing 4 */
.face.bottom {
    transform: rotateX(-90deg) translateZ(30px);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #f9d71c;
    border-radius: 50%;
    align-self: center;
    justify-self: center;
    box-shadow: 0 0 5px #f9d423;
}

/* Add subtle animation */
@keyframes float {
    0% { transform: translateZ(0) translateY(0); }
    50% { transform: translateZ(10px) translateY(-10px); }
    100% { transform: translateZ(0) translateY(0); }
}

.logo-frame {
    animation: float 6s ease-in-out infinite;
}

/* Add 3D effect to rice bowl images */
@keyframes hover {
    0% { transform: translateZ(0) scale(1.1); }
    50% { transform: translateZ(15px) scale(1.15); }
    100% { transform: translateZ(0) scale(1.1); }
}

.rice-bowl img {
    animation: hover 4s ease-in-out infinite;
}

/* Cyberpunk background animation */
@keyframes bgPulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.cyberpunk-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 70%, rgba(15, 255, 170, 0.1) 100%);
    animation: bgPulse 4s ease-in-out infinite;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%230fa' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}