.shatter3d-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    user-select: none;
}

.shatter3d-stage {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #111;
    perspective: 1000px;
}

/* 3D Cube Container */
.shatter3d-shatter-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    pointer-events: none;
    z-index: 1;
}

/* 3D Cube Box Styling */
.shatter3d-cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.shatter3d-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.shatter3d-face.front {
    transform: rotateY(0deg) translateZ(1px);
}

.shatter3d-face.back {
    transform: rotateY(180deg) translateZ(1px);
}

/* Navigation */
.shatter3d-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 15;
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
}

.shatter3d-nav:hover {
    background: #00a8ff;
    transform: translateY(-50%) scale(1.1);
}

.shatter3d-prev {
    left: 20px;
}

.shatter3d-next {
    right: 20px;
}

/* Slide Info Overlay */
.shatter3d-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    z-index: 10;
    max-width: 50%;
    pointer-events: none;
}

.shatter3d-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    animation: fadeInUp 0.8s ease both;
}

.shatter3d-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Subscription Form Card Overlay */
.shatter3d-form-card {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 320px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 12;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.shatter3d-form-card h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #fff;
}

.shatter3d-ajax-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shatter3d-ajax-form input[type="email"] {
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #fff;
    outline: none;
    transition: border 0.3s;
}

.shatter3d-ajax-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.shatter3d-ajax-form input[type="email"]:focus {
    border-color: #00a8ff;
}

.shatter3d-submit {
    padding: 12px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.shatter3d-submit:hover {
    transform: translateY(-2px);
}

.shatter3d-form-message {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
