
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8) 0%, rgba(27, 38, 59, 0.75) 50%, rgba(65, 88, 208, 0.6) 100%);
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    background: linear-gradient(45deg, #4158d0 0%, #c850c0 100%);
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(65, 88, 208, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(65, 88, 208, 0.45);
    background: linear-gradient(45deg, #5a6fd8 0%, #d65cd6 100%);
}

.hero-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Block 2 */
.storage-solutions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 50%, #fff 100%);
    overflow: hidden;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solutions-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.solutions-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.8rem;
    color: #5a6c7d;
    font-weight: 500;
}

.technology-showcase {
    margin-top: 3rem;
    text-align: center;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.tech-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.tech-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tech-content {
    padding: 1.5rem;
}

.tech-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.tech-content p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .storage-solutions {
        padding: 3rem 0;
    }
    
    .solutions-title {
        font-size: 2rem;
    }
    
    .solutions-description {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .primary-image {
        height: 300px;
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
}

/* Block 3 */
.immersive-experience {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.experience-wrapper {
    position: relative;
    min-height: 100vh;
}

.parallax-container {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.parallax-bg {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(-10%);
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(-10%) scale(1.05); }
    50% { transform: translateY(-15%) scale(1.1); }
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(15,15,35,0.4) 0%, rgba(15,15,35,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.experience-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 30px rgba(102, 126, 234, 0.5); }
    to { text-shadow: 0 0 60px rgba(102, 126, 234, 0.8), 0 0 90px rgba(118, 75, 162, 0.4); }
}

.experience-subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    font-style: italic;
}

.floating-elements {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.data-orb {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: orbFloat 6s ease-in-out infinite;
}

.data-orb img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(102, 126, 234, 0.6);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
}

.data-orb:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(102, 126, 234, 0.8);
}

.orb-label {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 600;
}

.orb-primary { animation-delay: 0s; }
.orb-secondary { animation-delay: 2s; }
.orb-tertiary { animation-delay: 4s; }

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

.dimensional-grid {
    background: linear-gradient(45deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
}

.dimension-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dimension-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dimension-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dimension-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.card-body p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.metric-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.metric-unit {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cosmic-visualization {
    background: radial-gradient(circle at 30% 70%, #16213e 0%, #0f0f23 100%);
    padding: 6rem 0;
    position: relative;
}

.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: ringPulse 4s linear infinite;
}

.ring-1 { width: 300px; height: 300px; margin: -150px 0 0 -150px; }
.ring-2 { width: 400px; height: 400px; margin: -200px 0 0 -200px; animation-delay: 1.3s; }
.ring-3 { width: 500px; height: 500px; margin: -250px 0 0 -250px; animation-delay: 2.6s; }

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 0; }
}

.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #667eea 0%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1.6s; }
.particle-3 { top: 30%; left: 70%; animation-delay: 3.2s; }
.particle-4 { top: 80%; left: 20%; animation-delay: 4.8s; }
.particle-5 { top: 10%; left: 90%; animation-delay: 6.4s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    25% { transform: translateY(-40px) scale(1.2); opacity: 1; }
    50% { transform: translateY(0px) scale(0.8); opacity: 0.6; }
    75% { transform: translateY(40px) scale(1.1); opacity: 0.9; }
}

.cosmic-info {
    padding-left: 3rem;
}

.cosmic-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cosmic-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cosmic-features {
    margin-bottom: 3rem;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

.feature-indicator {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(102, 126, 234, 0.6); }
    50% { box-shadow: 0 0 25px rgba(102, 126, 234, 0.9); }
}

.cosmic-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cosmic-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .experience-title { font-size: 2.5rem; }
    .experience-subtitle { font-size: 1.2rem; }
    .floating-elements { height: 200px; flex-direction: column; }
    .data-orb img { width: 80px; height: 80px; }
    .cosmic-info { padding-left: 0; margin-top: 3rem; }
    .cosmic-title { font-size: 2rem; }
    .ring-1, .ring-2, .ring-3 { display: none; }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 120px 0;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quantum-form {
    margin-top: 50px;
}

.form-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.form-input:focus + .form-label {
    transform: translateY(-35px) scale(0.85);
    color: #667eea;
}

.form-input:valid + .form-label {
    transform: translateY(-35px) scale(0.85);
    color: #28a745;
}

.form-label {
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 1.1rem;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255, 255, 255, 0.9);
    padding: 0 8px;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.form-input:focus ~ .input-glow {
    opacity: 1;
}

.field-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.field-icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 8px;
}

.storage-preferences {
    margin-bottom: 50px;
}

.preferences-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #495057;
    text-align: center;
    margin-bottom: 35px;
}

.preference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.preference-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.preference-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 1);
}

.preference-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid rgba(102, 126, 234, 0.3);
}

.preference-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

.form-footer {
    text-align: center;
}

.submit-button {
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.5);
}

.button-energy {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover .button-energy {
    left: 100%;
}

.button-icon {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 50%;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    padding: 20px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.security-icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.data-stream {
    position: absolute;
    animation: float 8s ease-in-out infinite;
}

.stream-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.stream-2 {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.stream-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.data-stream img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(2px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0px) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 40px 30px;
        border-radius: 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .field-icon {
        align-self: center;
    }
    
    .preference-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .security-notice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .header-image {
        width: 80px;
        height: 80px;
    }
}
