body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header, footer {
    background-color: #01875f;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.banner {
    padding: 40px 0;
    background-color: #f5f5f5;
}

/* Download Button Styles */
.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: #01875f;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #016a4c; /* A slightly darker green for hover effect */
}

/* --- Google Font Import (Add to the top of your CSS file) --- */

/* --- DESCRIPTION SECTION REDESIGN --- */

.description {
    font-family: 'Noto Serif JP', serif; /* Apply the new, elegant font */
    background-color: #fdfdfd; /* A very light background to distinguish the section */
    padding: 60px 0;
}

/* A responsive grid layout for the description content */
.description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Auto-fits columns */
    gap: 50px;
    align-items: start;
}

/* Styling for the main heading of the section */
.description .container h3 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

/* A decorative underline that matches the game's theme color */
.description .container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px; /* A bit longer for emphasis */
    height: 4px;
    background-color: #01875f;
    border-radius: 2px;
}

/* Styling for the main introductory paragraph */
.description-intro p {
    font-size: 1.1em;
    line-height: 1.8; /* More spacing for readability */
    color: #5f6368;
}

.feature-item {
    margin-bottom: 25px;
}
.feature-item:last-child {
    margin-bottom: 0;
}

/* Styling for the feature subheadings */
.description-features h4 {
    font-size: 1.6em;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* A small decorative circle element before each subheading */
.description-features h4::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #01875f;
    border-radius: 50%;
    margin-right: 12px;
}

/* Styling for the feature paragraphs */
.description-features p {
    font-size: 1em;
    line-height: 1.7;
    color: #5f6368;
    padding-left: 24px; /* Aligns text with the heading's text */
    border-left: 2px solid #e0e0e0;
    margin-left: 5px;
}

.banner-content {
    display: flex;
    align-items: center;
}

.game-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    margin-right: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.banner-text h2 {
    margin: 0;
    font-size: 2.5em;
}

.developer {
    color: #01875f;
    font-weight: bold;
    font-size: 1.2em;
}

.in-app {
    color: #5f6368;
}

.stats {
    display: flex;
    align-items: start;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    font-size: 1.2em;
    font-weight: bold;
}

.star {
    color: #01875f;
}

.pegi {
    border: 1px solid #5f6368;
    padding: 5px 10px;
    border-radius: 5px;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

h3 {
    color: #01875f;
    font-size: 2em;
    margin-bottom: 20px;
}

h4 {
    color: #333;
}

/* --- SLIDER STYLES --- */

.slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden; /* This is key: it hides the slides that are off-screen */
    border-radius: 10px;
}

.slider-track {
    display: flex;
    /* This transition is where the magic happens! */
    transition: transform 0.5s ease-in-out; 
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/*
=====================================
--- RATINGS & REVIEWS SECTION STYLES ---
=====================================
*/

.ratings-reviews {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.review-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px; /* This will be animated */
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Add transition for smooth appearance */
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out, margin 0.5s ease-in-out, padding 0.5s ease-in-out;
}

/* Initially hide all reviews starting from the 4th one */
.reviews-container .review-card:not(.visible) {
    display: none; /* Temporarily set to none for initial load */
}

/* We use a helper class in JS to manage initial visibility */
.review-card.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
}

/* Class to make hidden reviews visible */
.review-card.visible {
    opacity: 1;
    max-height: 500px; /* Large enough to fit content */
    /* Other properties are restored to their default values from .review-card */
}


.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* ... (other .review-card styles like .review-info, .review-body remain the same) ... */
.review-info h4{margin:0;font-size:1.1em;color:#333}.review-info .review-date{margin:0;font-size:.9em;color:#5f6368}.review-body .rating-stars{color:#01875f;font-weight:700;margin-bottom:10px;font-size:1.1em}.review-body p{color:#5f6368;line-height:1.6;margin:0}

/* Button Styling */
.show-more-btn {
    display: block;
    margin: 30px auto 0;
    padding: 12px 30px;
    background-color: #01875f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.show-more-btn:hover {
    background-color: #016a4c;
    transform: translateY(-2px);
}

/* --- DATA SAFETY SECTION REDESIGN --- */

/*
=================================
--- DATA SAFETY TABS STYLES ---
=================================
*/

.data-safety {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Tab Navigation Bar */
.tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: #5f6368;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: #333;
}

/* The animated underline for the active tab */
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Sits on top of the nav border */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #01875f;
    transform: scaleX(0); /* Hidden by default */
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.tab-btn.active {
    color: #01875f;
}

.tab-btn.active::after {
    transform: scaleX(1); /* Visible when active */
}

/* Tab Content Styling */
.tab-content {
    display: none; /* Hide all tabs by default */
    align-items: flex-start;
    animation: fadeIn 0.5s ease-in-out; /* Fade-in animation */
}

.tab-content.active {
    display: flex; /* Show only the active tab */
}

/* Re-using styles for the content inside the tab */
.safety-icon {
    font-size: 2.5em;
    color: #01875f;
    margin-right: 25px;
    margin-top: 5px;
}

.safety-content h4 {
    font-family: Arial, sans-serif;
    font-size: 1.5em;
    color: #333;
    margin: 0 0 10px 0;
}

.safety-content p {
    font-size: 1em;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 15px;
}

.safety-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.safety-content li {
    font-size: 1em;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.safety-content li::before {
    content: '✓';
    color: #01875f;
    font-weight: bold;
    margin-right: 10px;
}

/* Simple fade-in animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header for the section */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 2.8em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #5f6368;
    line-height: 1.6;
}

/* Grid layout for the cards */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual card styling */
.safety-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: flex-start; /* Aligns icon and content to the top */
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Icon styling */
.safety-icon {
    font-size: 2em;
    color: #01875f;
    margin-right: 20px;
}

/* Content within the card */
.safety-content h4 {
    font-family: Arial, sans-serif; /* Using a sans-serif for modern UI feel */
    font-size: 1.4em;
    color: #01875f;
    margin: 0 0 8px 0;
}

.safety-content p {
    font-size: 0.95em;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Unordered list for data points */
.safety-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.safety-content li {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* A checkmark icon before each list item for clarity */
.safety-content li::before {
    content: '✓';
    color: #01875f;
    font-weight: bold;
    margin-right: 10px;
}

/* --- HEADER LINK STYLING --- */
header a {
    text-decoration: none; /* Removes the underline */
    color: inherit;       /* Makes the link inherit the parent's color (white) */
}

/* --- FOOTER LINKS STYLING --- */
.footer-links {
    margin-bottom: 15px; /* Adds some space below the links */
}

.footer-links a {
    color: #fff; /* Makes the link text white */
    text-decoration: none; /* Removes the default underline */
    margin: 0 10px; /* Adds space around the links */
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline; /* Adds an underline on hover for better UX */
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5); /* Makes the separator slightly transparent */
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .game-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .stats {
        justify-content: center;
    }
}

/*
=================================
--- GALLERY PAGE STYLES ---
=================================
*/

/* --- Hero Section for Gallery Page --- */
.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),  no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.gallery-page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.2em;
    margin: 0 0 10px 0;
}

.gallery-page-subtitle {
    font-size: 1.3em;
    font-weight: 300;
    margin: 0;
}

/* --- Expanded Game Features Section --- */
.game-features {
    padding: 60px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #01875f;
}

.feature-card h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5em;
    color: #333;
    margin: 0 0 15px 0;
}

.feature-card p {
    color: #5f6368;
    line-height: 1.7;
}

/* --- Image Gallery Section --- */
/*
=================================
--- BENTO GRID GALLERY STYLES ---
=================================
*/

.image-gallery {
    padding: 60px 0;
    background-color: #f5f5f5;
}

/* --- The Grid Container --- */
.gallery-grid {
    display: grid;
    gap: 15px;
    /* Define a 4-column grid for the bento layout on large screens */
    grid-template-columns: repeat(4, 1fr);
    /* Define row heights, making images fit well */
    grid-auto-rows: 250px; 
}

/* --- The Grid Items --- */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative; /* Needed for the overlay */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* --- Bento Grid Sizing --- */
/* Make the first item a large hero image (2x2 span) */
.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

/* Make item 4 and 6 wider (2x1 span) */
.item-4, .item-6 {
    grid-column: span 2;
}

/* --- Hover Overlay & Icon --- */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 135, 95, 0.7); /* Themed transparent color */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    stroke-width: 2px;
}

/* --- Hover Effects --- */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/*
--- RESPONSIVE DESIGN FOR THE GRID ---
*/

/* --- Tablet View (e.g., iPads) --- */
@media (max-width: 992px) {
    .gallery-grid {
        /* Simplify to a 2-column grid */
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    /* Reset all items to default spans, they will flow naturally */
    .item-1, .item-4, .item-6 {
        grid-column: span 1;
        grid-row: span 1;
    }
    /* Optionally make the first item a horizontal hero */
    .item-1 {
        grid-column: span 2;
    }
}

/* --- Mobile View (e.g., iPhones) --- */
@media (max-width: 576px) {
    .gallery-grid {
        /* Stack everything in a single column */
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    /* Ensure all items only span 1 column on mobile */
    .item-1 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/*
=================================
--- FAQ SECTION STYLES ---
=================================
*/
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

/* Style for the clickable question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover span {
    color: #01875f;
}

.faq-icon {
    font-size: 1.8em;
    font-weight: 300;
    color: #01875f;
    transition: transform 0.3s ease-in-out;
}

/* Style for the answer content */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 10px 20px 10px;
    margin: 0;
    color: #5f6368;
    line-height: 1.7;
}

/* --- Active state for when an item is open --- */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if your answers are longer */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Rotates '+' into an 'x' */
}


/*
=================================
--- GAME FEATURES SHOW/HIDE STYLES ---
=================================
*/

/* Container for the features that will be hidden/shown */
.hidden-features {
    /* This creates a grid container that takes up the full width */
    grid-column: 1 / -1; 
    display: grid;
    /* Inherit the grid layout from the parent */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out, opacity 0.5s ease-in-out;
}

.hidden-features.visible {
    max-height: 1000px; /* Adjust if content is taller */
    opacity: 1;
}

/* "Show More / Show Less" Button Styling */
.toggle-features-btn {
    display: block;
    margin: 40px auto 0;
    padding: 12px 30px;
    background-color: transparent;
    color: #01875f;
    border: 2px solid #01875f;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle-features-btn:hover {
    background-color: #01875f;
    color: #fff;
}

/*
=================================
--- FEATURE CARD SVG ICONS ---
=================================
*/

/* Container for the SVG icon */
.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f3f0; /* A very light shade of the theme color */
    border-radius: 50%;
}

/* Styling the SVG element itself */
.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #01875f; /* Theme color for the icon */
    stroke-width: 1.5px;
}

/* Update the .feature-card to remove the border and adjust padding */
.feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    /* The border-left is removed for a cleaner look with icons */
    /* border-left: 5px solid #01875f; -- This is now removed */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/* Custom Animate on Scroll */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/*
=========================================
--- LEGAL PAGE STYLES (Privacy/Terms) ---
=========================================
*/

/* --- Hero Section for Legal Pages --- */
.legal-hero {
    background-color: #f5f5f5; /* A light, clean background */
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.legal-page-title {
    font-size: 3em;
    color: #333;
    margin: 0 0 10px 0;
}

.legal-page-subtitle {
    font-size: 1.2em;
    color: #5f6368;
    margin: 0;
}

/* --- Main Content Area for Legal Text --- */
.legal-content {
    padding: 50px 0;
    background-color: #fff;
}

/* A container to give the text a clean, document-like feel */
.legal-content-container {
    max-width: 800px; /* Optimal width for reading text */
    background-color: #fff;
}

.last-updated {
    font-style: italic;
    color: #5f6368;
    text-align: left;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

/* Spacing for each article/section */
.legal-content article {
    margin-bottom: 40px;
}

/* Headings within the legal text */
.legal-content h2 {
    font-size: 1.8em;
    color: #01875f; /* Theme color for headings */
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e0e0e0;
}

/* Paragraph styling for readability */
.legal-content p {
    font-size: 1em;
    line-height: 1.7; /* Generous line spacing */
    color: #333;
    margin-bottom: 20px;
}

/* List styling */
.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Strong/bold text */
.legal-content strong {
    color: #333;
}

/* Link styling within the text */
.legal-content a {
    color: #01875f;
    text-decoration: none;
    font-weight: bold;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .legal-page-title {
        font-size: 2.2em;
    }

    .legal-content {
        padding: 30px 0;
    }
}

/* --- Button for Legal Pages --- */
.legal-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 25px;
    background-color: #01875f;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
}

.legal-button:hover {
    background-color: #016a4c;
    color: #fff;
    text-decoration: none;
}

/*
=================================
--- THANK YOU PAGE STYLES ---
=================================
*/

/* Main container to center the content */
.thank-you-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 180px); /* Adjust if your header/footer height is different */
    padding: 40px 20px;
    background-color: #f5f5f5;
}

/* The central content box */
.thank-you-box {
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.thank-you-box h2 {
    font-size: 2.5em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
}

.thank-you-box p {
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button Styling */
.return-home-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #01875f;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.return-home-btn:hover {
    background-color: #016a4c;
}


/* --- SVG Checkmark Animation --- */
.checkmark-container {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.checkmark-svg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #01875f;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #01875f;
    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

/* Keyframe animations for the checkmark */
@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #01875f;
    }
}