/* 添加 Inter 字体 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* 基础样式 */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    line-height: 1.5;
    word-spacing: normal; /* Ensure normal word spacing */
    letter-spacing: normal; /* Ensure normal letter spacing */
    box-sizing: border-box;
}

/* Apply box-sizing to all elements */
* {
    box-sizing: border-box;
}

/* Logo 保持原有字体 */
.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 其他文本元素使用 Inter */
h1, h2, h3, h4, h5, h6, p, span, button, input, label, a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 调整登录面板的默认样式 */
.auth-section {
    display: block !important;
    position: relative;
    top: 70px;
    left: 90px;
    width: 450px;
    height: auto;
    background: black;
    border-radius: 48px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 20px solid #ffffff;
    z-index: auto;
}

/* 复用其他 auth 相关的样式 */
.auth-container {
    padding: 1.5rem;
    padding-top: 0.1rem; /* 进一步减小顶部内边距 */
    padding-bottom: 1.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.auth-tabs {
    display: flex;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #e5e7eb;
    width: 90%; /* 与输入框宽度保持一致 */
    margin-left: auto;
    margin-right: auto;
}

.auth-tab {
    flex: 1;
    padding: 0.4rem;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    color: #ffffff;
    font-size: 1.2rem;
}

.auth-tab.active {
    color: #ffffff;
    border-bottom: 2px solid #ff6b6b;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group:last-of-type {
    margin-bottom: 0.6rem; /* 最后一个表单项（密码输入框）与按钮之间的间距 */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem; /* 减小字体大小 */
    width: 95%; /* 与输入框宽度保持一致 */
    text-align: left; /* 标签文字左对齐 */
}

.form-control {
    width: 90%;
    padding: 0.8rem; /* 增加内边距 */
    border: 3px solid #ff6b6b;
    border-radius: 8px;
    font-size: 1rem; /* 增大字体 */
    background: #ffffff;
    color: #666666;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b6b; /* 保持焦点时的边框颜色 */
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2); /* 添加淡橙色阴影效果 */
}

.form-control::placeholder {
    color: #999999;
    font-size: 1rem; /* 增大占位符字体 */
}

.btn {
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem; /* 增大按钮字体 */
    cursor: pointer;
}

.btn-google {
    background: white;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    gap: 0.5rem;
    font-size: 1.1rem; /* 增大字体 */
    font-weight: 600; /* 加粗字体 */
}

.btn-google .fab.fa-google {
    font-size: 1.3rem; /* 相应增大图标大小 */
    background: conic-gradient(
        from -45deg,
        #ea4335 110deg,
        #4285f4 90deg 180deg,
        #34a853 180deg 270deg,
        #fbbc05 270deg
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    position: static;
    transform: none;
}

.btn-primary {
    background: linear-gradient(to right, #ff6b6b, #6a5acd, #008B8B, #ff6b6b);
    background-size: 200% auto;
    color: white;
    margin-bottom: 0.3rem;
    animation: button-gradient-animation 4s linear infinite;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.1rem;
    width: 100%; /* 与输入框宽度保持一致 */
    margin-left: auto;
    margin-right: auto;
}

@keyframes button-gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.divider {
    text-align: center;
    margin: 0.5rem 0;
    color: #ffffff; /* 改为白色 */
    position: relative;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600; /* 加粗字体 */
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
    margin: 0 1rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

/* 顶部导航栏样式 */
.nav-container {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2px 0;
    z-index: 1000;
    height: 20px;
    box-sizing: border-box;
    background: transparent;
}

.slanted-promo-bar {
    background-color: #5cb85c;
    color: white;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 70px;
    text-align: center;
    transform: rotate(15deg);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 2;
}

.nav-menu {
    display: flex;
    gap: 50px;
    padding: 15px 40px;
    border-radius: 25px;
    align-items: center;
    height: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.nav-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 22px;  /* 增大字体大小 */
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;  /* 增加字间距 */
}

.nav-item:hover {
    transform: scale(1.10);
}

.nav-item.active {
    color: #000000;
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

/* 修改内容隐藏样式 */
.content-hidden {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


@keyframes button-gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 忘记密码样式 */
.forgot-password-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #666;
    padding: 10px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
    text-align: center;
}

.forgot-password-btn:hover {
    color: #4f46e5;
}

.help-text {
    text-align: center;
    color: #666;
    font-size: 1rem; /* 增大帮助文本字体 */
    margin-top: 1rem;
}

/* Reset password form styles */
.reset-form {
    max-width: 320px;
    margin: 0 auto;
}

.reset-input {
    margin-bottom: 20px;
}

.reset-input input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.reset-input input:focus {
    border-color: #4f46e5;
    outline: none;
}

.reset-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

/* 添加 logo 样式 */
.site-logo-gradient {
    position: fixed;
    top: 15px;
    left: 40px;
    font-size: 24px;
    font-weight: 600;
    z-index: 1001;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(to right, #ff6b6b, #6a5acd,#00FFFF, #ff6b6b); /* 应用按钮的渐变色 */
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: button-gradient-animation 4s linear infinite; /* 应用按钮的渐变动画 */
}

.top-right-login-btn,
.top-right-control-btn {
    position: fixed !important;
    top: 20px !important;
    right: 0 !important;
    margin: 0 !important;
    z-index: 2002 !important;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(to right, #ff6b6b, #6a5acd, #008B8B, #ff6b6b);
    background-size: 200% auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: button-gradient-animation 4s linear infinite;
    white-space: nowrap;
}

.top-right-login-btn:hover,
.top-right-control-btn:hover {
    transform: scale(1.10);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

@keyframes button-gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px 0;
    color: #ffffff; /* 确保在黑色背景下可见 */
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5); /* 添加一个半透明的背景 */
    z-index: 999; /* 确保在大多数内容之上，但在关键UI之下 */
}

/* 广告栏 */
.main-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    margin-top: 50px;
    width: 90%; /* Add width constraint */
    margin-right: -50px; /* Reduce right margin */
}

.main-content-wrapper-flex {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    justify-content: center;
}

.ad-section {
    width: auto;
    max-width: 600px;
    flex: none;
    flex-shrink: 0;
    text-align: left;
    color: white;
    padding: 10px;
    position: relative;
    z-index: 2;
    min-height: 500px;
    top: 100px;
    left: 100px;
}

.ad-title {
    text-align: left;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

.stars {
    color: gold;
    font-size: 1.5em;
}

.stars i {
    margin: 0 2px;
}

.main-ad-content {
    margin-top: 20px;
    margin-right: 0px;
    padding: 0px;
    width: 100%; /* Ensure full width */
    display: block;
    word-break: break-word;
    text-wrap: pretty;
}

.star-icon {
    font-size: 2.5em;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}

.main-ad-content h1 {
    font-size: 3.5em; /* Further reduce font size */
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
}

.main-ad-content ul {
    list-style: none;
    padding: 0;
    text-align: left; /* Ensure list items align left */
}

.main-ad-content li {
    font-size: 1.2em; /* Adjusted font-size */
    margin-bottom: 15px;
    line-height: 1.2; /* Adjusted line-height for list items */
    white-space: normal; /* Ensure normal white-space */
    overflow-wrap: break-word; /* Ensure long words break within the line */
    text-align: left; /* Ensure text within list item aligns left */
}

.emoji {
    margin-right: 10px; /* Revert to original */
    font-size: 1.2em; /* Revert to original */
}

.highlight {
    text-decoration: underline;
    border-bottom: none;
    display: inline;
    white-space: normal; /* Ensure normal white-space */
    margin-left: 0;
    margin-right: 0; /* Ensure no margin-right */
}

.right-panel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-left: 30px;
    margin-top: 60px;
    position: relative;
    width: 100%;
    min-height: 600px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    margin-top: 50px; /* Adjusted margin-top to reduce spacing */
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 40px;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background-color: #333333; /* Keep background for debugging if needed */
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 10; /* Increase z-index to be above potential overlapping elements */
    position: relative;
}

.toggle-option {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    z-index: 11; /* Ensure these options are above the parent billing-toggle */
}

.toggle-option:hover {
    background-color: yellow; /* DEBUG: Make hover very obvious */
    color: black; /* DEBUG: Change text color for contrast */
}

#monthly-toggle-option.active {
    background-color: limegreen; /* DEBUG: Make active monthly very obvious */
    color: white;
}

#yearly-toggle-option.active {
    background-color: #ff4500; /* Orange background for yearly active */
    color: white;
}

#yearly-toggle-option {
    /* Remove background-color here, active class will handle it */
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
}

#yearly-toggle-option i.fas.fa-fire {
    color: white;
    margin-right: 8px;
}

#yearly-toggle-option .yearly-text {
    font-weight: bold;
    font-size: 1.05em;
}

#yearly-toggle-option .yearly-save-text-toggle {
    font-size: 0.85em;
    font-weight: normal;
    margin-left: 5px;
    opacity: 1;
}

.billed-annually-info {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 5px;
}

.billed-annually-value {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

.yearly-save-text {
    font-size: 0.9em; /* Use this font size */
    color: #cccccc; /* Use this color */
    font-weight: normal;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    width: 300px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium {
    border: 3px solid #ff4500; /* Highlight for Premium */
}

.plan-name {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.most-popular {
    position: absolute;
    top: -10px; /* Adjust to move slightly up */
    right: -10px; /* Adjust to move slightly right */
    background-color: #ff4500;
    color: white;
    padding: 10px 25px; /* Adjust padding */
    border-bottom-left-radius: 20px;
    font-weight: bold;
    z-index: 10; /* Ensure it's above other card content */
}

.price {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.per-month {
    font-size: 0.5em;
    font-weight: normal;
}

.description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
    min-height: 80px; /* Ensure consistent height for descriptions */
}

.subscribe-btn {
    background-color: #ff4500;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.subscribe-btn:hover {
    background-color: #e63900;
}

.yearly-save {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 20px;
    text-decoration: underline;
    cursor: pointer;
}

.features {
    margin-top: 20px;
    border-top: 1px solid #333333;
    padding-top: 20px;
}

.features p {
    margin-bottom: 10px;
    font-size: 1em;
}

.features p i {
    margin-right: 10px;
    color: #5cb85c; /* Green checkmark */
}

.features-list {
    margin-top: 20px;
}

.features-list h4 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.features-list h4 i {
    margin-right: 10px;
    color: #ffffff; /* White arrow */
}

.features-list p {
    margin-bottom: 10px;
    font-size: 1em;
}

.features-list p i {
    margin-right: 10px;
    color: #5cb85c; /* Green checkmark */
}

.highlighted-feature {
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
    color: white; /* Default text color for highlighted features */
}

.low-quality-photos {
    background-color: #dc3545; /* Red background for low quality */
}

.medium-quality-photos {
    background-color: #ffc107; /* Yellow background for medium quality */
}

.high-quality-photos {
    background-color: #28a745; /* Green background for high quality */
}

.ultra-quality-photos {
    background-color: #20c997; /* Light green background for ultra quality */
}

/* Add a container for the title and stars */
.ad-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.use-now-btn {
    position: relative;
    margin-top: 160px;
    padding: 30px 40px;
    border: none;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(to right, #ff6b6b, #6a5acd, #008B8B, #ff6b6b);
    background-size: 200% auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: button-gradient-animation 4s linear infinite;
    white-space: nowrap;
    z-index: auto;
    margin-left: 40px; /* 新增：向右移动按钮，可根据需要调整数值 */
}

.use-now-btn:hover {
    transform: scale(1.10);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.user-info-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.01); /* 仅轻微遮罩，便于右上角面板 */
    z-index: 2000;
}
.user-info-modal-content {
    position: absolute;
    top: 30px;
    right: 40px;
    background: #181818;
    color: #fff;
    border-radius: 14px;
    padding: 22px 24px 18px 24px;
    min-width: 220px;
    max-width: 90vw;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    text-align: left;
    font-size: 1rem;
}

.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
    margin-bottom: 32px;
}
.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.faq-content {
    max-width: 700px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.ideas-section {
    padding: 80px 20px 60px 20px;
    background: #111;
    color: #fff;
    text-align: center;
}

.ideas-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 18px;
}

.ideas-intro {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 40px;
}

.ideas-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}

.idea-card {
    background: #181818;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    width: 300px;
    padding: 36px 24px 28px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.idea-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

.idea-img {
    width: 100%;
    max-width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.idea-name {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.idea-desc {
    font-size: 1em;
    color: #bbbbbb;
    margin-bottom: 0;
}

.background-gallery {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-photo {
    position: absolute;
    width: 220px;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.25);
    opacity: 0.85;
}
.bg-photo:nth-child(1) { left: 5vw; top: 5vh; transform: rotate(-7deg);}
.bg-photo:nth-child(2) { left: 20vw; top: 10vh; transform: rotate(4deg);}
.bg-photo:nth-child(3) { left: 35vw; top: 3vh; transform: rotate(-3deg);}
.bg-photo:nth-child(4) { left: 50vw; top: 12vh; transform: rotate(6deg);}
.bg-photo:nth-child(5) { left: 65vw; top: 7vh; transform: rotate(-5deg);}
.bg-photo:nth-child(6) { left: 80vw; top: 15vh; transform: rotate(2deg);}
.bg-photo:nth-child(7) { left: 12vw; top: 40vh; transform: rotate(-2deg);}
.bg-photo:nth-child(8) { left: 55vw; top: 55vh; transform: rotate(5deg);}
.bg-photo:nth-child(9) { left: 75vw; top: 60vh; transform: rotate(-4deg);}

.background-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.68);
    z-index: 1;
    pointer-events: none;
}

.main-content-wrapper-flex,
.ad-section,
.right-panel-wrapper,
.ideas-section,
.faq-section,
.site-logo-gradient,
.nav-container,
.top-right-login-btn,
.top-right-control-btn,
.site-footer {
    position: relative;
    z-index: 2;
}

.orange-highlight {
    box-shadow: 0 0 0 4px #ff9800, 0 4px 24px rgba(255,152,0,0.25);
    border: 20px solid #ff9800 !important;
    transition: box-shadow 0.3s, border 0.3s;
}

.testimonials-section {
    margin: 60px auto 0 auto;
    padding: 0 0 60px 0;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.testimonials-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #ff7043;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 36px 32px 28px 32px;
    width: 350px;
    max-width: 95vw;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, border 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(255,112,67,0.18);
    border-color: #ffa726;
}

.testimonial-stars {
    font-size: 2em;
    margin-bottom: 18px;
    color: #ffb300;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.18em;
    color: #222;
    margin-bottom: 24px;
    line-height: 1.5;
    min-height: 120px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    color: #222;
    font-weight: 600;
}

.testimonial-name {
    font-weight: bold;
}

.testimonial-verified {
    font-size: 0.95em;
    color: #888;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 2px 10px;
    margin-left: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

