/* Base Styles and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary-color: #362075;
    --secondary-color: #4a33a3;
    --accent-color: #6e51e2;
    --accent-light: #9175ff;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 12px;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --section-spacing: 30px;
    --inner-spacing: 15px;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Phone Container Styling */
.phone-container {
    width: 100%;
    max-width: 420px;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: 100%;
    max-height: 800px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #f8f9fa;
    font-size: 12px;
    color: #333;
}

.status-bar .icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Header */
header {
    padding: 20px 15px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

/* Main Content */
main {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    padding-bottom: 70px;
}

/* Tabs Section */
.tabs {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    background-color: var(--primary-color);
    padding: 0 15px;
}

.tab {
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    flex: 1;
    opacity: 0.7;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.tab.active {
    opacity: 1;
    font-weight: 500;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

h2 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 20px 0 15px;
    font-weight: 500;
}

h3 {
    font-size: 1rem;
    margin: 15px 0 10px;
    color: var(--dark-color);
    font-weight: 500;
}

h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.audio-btn-header {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 18px;
    cursor: pointer;
    margin-left: 8px;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.audio-btn-header:hover {
    background-color: rgba(110, 81, 226, 0.1);
    transform: scale(1.1);
}

.audio-btn-header:active {
    transform: scale(0.95);
}

.audio-btn-header.playing {
    animation: pulse 1.5s infinite;
}

/* MindScore Section */
.mindScore-container {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 25px;
}

.mindScore-gauge {
    width: 120px;
    margin-right: 15px;
}

.gauge {
    width: 100%;
    height: auto;
}

.gauge-bg {
    fill: none;
    stroke: var(--light-gray);
    stroke-width: 10;
    stroke-dasharray: 314;
}

.gauge-fill {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 88;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1s ease;
}

.gauge-text {
    font-size: 24px;
    font-weight: bold;
    fill: var(--dark-color);
}

.mindScore-details {
    flex: 1;
}

.mindScore-details p {
    margin-bottom: 8px;
    color: var(--gray-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.mindScore-details .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.mindScore-details i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Card Styling */
.card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card h3 i {
    color: var(--accent-color);
}

/* Finance Summary Card */
.finance-metrics {
    display: flex;
    justify-content: space-between;
}

.metric {
    text-align: center;
}

.metric-value {
    font-weight: bold;
    font-size: 18px;
    color: var(--dark-color);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Portfolio Analysis Card */
.portfolio-recommendation h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-align: center;
}

.portfolio-chart {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
}

.pie-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pie-ring {
    fill: none;
    stroke: var(--light-gray);
    stroke-width: 1;
}

.pie-segment {
    transition: all 0.3s ease-in-out;
}

.portfolio-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.legend-item:hover {
    background-color: rgba(110, 81, 226, 0.1);
    transform: translateX(4px);
}

.legend-item:active {
    transform: translateX(2px);
}

.legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 6px;
}

.portfolio-explanation {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.4;
}

/* Habits Card */
.habit-item {
    display: flex;
    margin-bottom: 15px;
}

.habit-check {
    margin-right: 10px;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.habit-check i {
    color: var(--accent-color);
    cursor: pointer;
}

.habit-content h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.habit-content p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--accent-color);
}

/* Program Card */
.program-timeline {
    padding-left: 10px;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 15px;
    position: relative;
}

.timeline-point {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    background-color: white;
    margin-right: 10px;
    margin-top: 4px;
    z-index: 1;
}

.timeline-point.active {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
}

.timeline-point.completed {
    border-color: var(--success-color);
    background-color: var(--success-color);
}

.timeline-point.completed:after {
    content: '✓';
    color: white;
    font-size: 10px;
}

.timeline-connector {
    position: absolute;
    top: 10px;
    left: 8px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--light-gray);
}

.timeline-connector.active {
    background-color: var(--accent-color);
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.timeline-content .progress-percent {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Goals Card */
.goal-item {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 12px;
    margin-bottom: 12px;
}

.goal-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(110, 81, 226, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.goal-icon i {
    color: var(--accent-color);
}

.goal-content h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.goal-content p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.goal-metric {
    text-align: right;
    font-weight: 600;
    color: var(--success-color) !important;
    margin-top: 5px;
    font-size: 0.85rem;
}

/* Realtime Card */
.realtime-status {
    display: flex;
    margin-bottom: 15px;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.status-icon i {
    color: var(--success-color);
}

.status-content h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.status-content p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.quick-metrics {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.quick-metric-value {
    font-weight: bold;
    font-size: 18px;
    color: var(--dark-color);
}

.quick-metric-label {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Adjustments Card */
.adjustment-item {
    display: flex;
    margin-bottom: 15px;
}

.adjustment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(110, 81, 226, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.adjustment-icon i {
    color: var(--accent-color);
}

.adjustment-content h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.adjustment-content p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.btn-action {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-action:hover {
    opacity: 0.9;
}

/* Objectives Card */
.objective-timeline {
    position: relative;
}

.objective-date {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.objective-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 12px;
    margin-bottom: 15px;
    border-left: 3px solid var(--light-gray);
}

.objective-item.completed {
    border-left-color: var(--success-color);
}

.objective-item.active {
    border-left-color: var(--accent-color);
}

.objective-item h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.objective-item p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* Achievement Badges */
.achievement-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    background-color: rgba(110, 81, 226, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Bottom Navigation */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: white;
    border-top: 1px solid var(--light-gray);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
    padding: 8px;
    color: var(--gray-color);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.nav-item#chat-nav {
    display: none;
}

.nav-item span {
    font-size: 10px;
    margin-top: 2px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.nav-item.active {
    color: var(--accent-color);
}

.nav-item.active span {
    opacity: 1;
    transform: translateY(0);
}

/* Chat Styles */
.chat-container {
    display: none;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    padding-bottom: 80px;
    background-color: white;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.message {
    display: flex;
    gap: 10px;
    max-width: 85%;
}

.mira-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-message .message-avatar {
    background-color: var(--accent-light);
    color: white;
    font-weight: bold;
}

.message-content {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.message-content h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
}

.message-content p {
    margin: 0;
}

.user-message .message-content {
    background-color: var(--accent-light);
    color: white;
}

.audio-controls {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

.play-button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.audio-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.audio-wave span {
    width: 3px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.playing .audio-wave span {
    animation: soundwave 1s infinite alternate;
}

@keyframes soundwave {
    0% { height: 10px; }
    100% { height: 20px; }
}

.chat-input {
    display: flex;
    gap: 8px;
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 390px;
    width: calc(100% - 30px);
    padding: 15px;
    background-color: white;
    border-top: 1px solid var(--light-gray);
    border-radius: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-input button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.chat-input #home-btn {
    background-color: #6c5ce7;
}

.chat-input #home-btn:hover {
    background-color: #5849c7;
}

.recording {
    animation: pulse 1.5s infinite;
    background-color: #f44336 !important;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(244, 67, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0); }
}

.message-transition {
    animation: messageAppear 0.3s ease-out;
}

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

/* Mira Tab Styles */
.mira-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mira-intro {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mira-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(110, 81, 226, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mira-chat-preview {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
}

.chat-messages-preview {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.chat-input-preview {
    display: flex;
    gap: 8px;
    max-width: 100%;
    width: 100%;
}

.chat-input-preview input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    font-size: 0.9rem;
    max-width: calc(100% - 88px);
}

.chat-input-preview button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mira-features h4 {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(110, 81, 226, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
}

.feature-item span {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.mira-thinking {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 16px;
    background-color: rgba(110, 81, 226, 0.05);
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 8px;
    width: fit-content;
}

.mira-thinking span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
    animation: thinking 1.4s infinite ease-in-out both;
}

.mira-thinking span:nth-child(1) { animation-delay: -0.32s; }
.mira-thinking span:nth-child(2) { animation-delay: -0.16s; }

@keyframes thinking {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Notifications */
.mira-notification {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    animation: slideDown 0.5s ease forwards, fadeOut 0.5s ease 5s forwards;
    max-width: 280px;
}

.mira-notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(110, 81, 226, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mira-notification-content {
    font-size: 0.8rem;
    color: var(--dark-color);
}

@keyframes slideDown {
    from { transform: translate(-50%, -20px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

/* Portfolio Detail Modal */
.portfolio-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-detail-modal.show {
    opacity: 1;
}

.portfolio-detail-modal.fade-out {
    opacity: 0;
}

.portfolio-detail-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    max-width: 320px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 500px;
    overflow-y: auto;
}

.portfolio-detail-modal.show .portfolio-detail-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-color);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background-color: var(--light-gray);
    color: var(--dark-color);
}

.portfolio-detail-content h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.portfolio-detail-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.audio-btn-modal {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.audio-btn-modal:hover {
    opacity: 0.9;
}

.audio-btn-modal.playing {
    background-color: var(--success-color);
}

.audio-btn-inline {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 14px;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.audio-btn-inline:hover {
    background-color: rgba(110, 81, 226, 0.1);
    transform: scale(1.1);
}

.audio-btn-inline.playing {
    animation: pulse 1.5s infinite;
    color: var(--success-color);
}

/* Confetti animation */
.confetti-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
}

.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;
    opacity: 0;
    animation: confetti-fall 3s linear forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}