:root {
--primary: #6C3CE1;
--primary-dark: #5328c4;
--primary-light: #8B5CF6;
--accent: #F59E0B;
--accent2: #EC4899;
--success: #10B981;
--danger: #EF4444;
--bg: #0D0F1A;
--bg2: #131625;
--bg3: #1A1D2E;
--card: #1E2235;
--card2: #252840;
--border: rgba(108, 60, 225, 0.18);
--border2: rgba(255, 255, 255, 0.07);
--text: #F0F0FF;
--text2: #A0A3BA;
--text3: #6B6E85;
--radius: 14px;
--radius-sm: 8px;
--shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
--shadow-lg: 0 8px 64px rgba(0, 0, 0, 0.6);
--gradient: linear-gradient(135deg, #6C3CE1 0%, #EC4899 100%);
--gradient2: linear-gradient(135deg, #1E2235 0%, #252840 100%);
--font-head: 'Outfit', sans-serif;
--font-body: 'Inter', sans-serif;
--transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0
}
html {
scroll-behavior: smooth
}
body {
font-family: var(--font-body);
background: var(--bg);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
min-width: 320px
}
img {
max-width: 100%;
height: auto;
display: block
}
a {
color: inherit;
text-decoration: none
}
button {
font-family: inherit;
cursor: pointer;
border: none;
outline: none
}
input,
select,
textarea {
font-family: inherit;
outline: none;
border: none
}
ul {
list-style: none
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 16px
}
.gradient-text {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text
}
.btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 9px 18px;
border-radius: var(--radius-sm);
font-size: 13px;
font-weight: 600;
transition: var(--transition);
cursor: pointer;
border: none;
white-space: nowrap
}
.btn-primary {
background: var(--gradient);
color: #fff;
box-shadow: 0 4px 20px rgba(108, 60, 225, 0.35)
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(108, 60, 225, 0.5)
}
.btn-outline {
background: transparent;
color: var(--primary-light);
border: 1.5px solid var(--primary-light)
}
.btn-outline:hover {
background: rgba(108, 60, 225, 0.12)
}
.btn-ghost {
background: rgba(255, 255, 255, 0.06);
color: var(--text2)
}
.btn-ghost:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--text)
}
.btn-sm {
padding: 6px 12px;
font-size: 12px
}
.btn-lg {
padding: 13px 28px;
font-size: 15px;
border-radius: 10px
}
.badge {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 10px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase
}
.badge-primary {
background: rgba(108, 60, 225, 0.18);
color: var(--primary-light);
border: 1px solid rgba(108, 60, 225, 0.3)
}
.tag {
display: inline-flex;
align-items: center;
padding: 3px 8px;
border-radius: 4px;
font-size: 11px;
font-weight: 600;
background: rgba(108, 60, 225, 0.12);
color: var(--primary-light)
}
.divider {
width: 100%;
height: 1px;
background: var(--border2)
}
#tools-bar {
background: var(--bg2);
border-bottom: 1px solid var(--border2);
padding: 7px 0;
overflow: hidden;
position: relative
}
#tools-bar::before,
#tools-bar::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 50px;
z-index: 2;
pointer-events: none
}
#tools-bar::before {
left: 0;
background: linear-gradient(to right, var(--bg2), transparent)
}
#tools-bar::after {
right: 0;
background: linear-gradient(to left, var(--bg2), transparent)
}
.tools-ticker {
display: flex;
gap: 8px;
width: max-content;
animation: ticker 45s linear infinite
}
.tools-ticker:hover {
animation-play-state: paused
}
@keyframes ticker {
0% {
transform: translateX(0)
}
100% {
transform: translateX(-50%)
}
}
.tool-chip {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 11px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--border2);
color: var(--text2);
font-size: 11.5px;
font-weight: 500;
white-space: nowrap;
transition: var(--transition)
}
.tool-chip:hover {
background: rgba(108, 60, 225, 0.15);
border-color: var(--primary);
color: var(--primary-light)
}
#header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(13, 15, 26, 0.95);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border2)
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 60px;
gap: 12px
}
.logo {
display: flex;
align-items: center;
gap: 9px;
font-family: var(--font-head);
font-size: 18px;
font-weight: 800;
flex-shrink: 0
}
.logo-icon {
width: 33px;
height: 33px;
border-radius: 8px;
background: var(--gradient);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}
.logo span {
color: var(--primary-light)
}
.desktop-nav {
display: flex;
align-items: center;
gap: 2px
}
.nav-item {
position: relative
}
.nav-link {
display: flex;
align-items: center;
gap: 4px;
padding: 7px 13px;
border-radius: var(--radius-sm);
color: var(--text2);
font-size: 13px;
font-weight: 500;
transition: var(--transition)
}
.nav-link:hover {
color: var(--text);
background: rgba(255, 255, 255, 0.06)
}
.nav-link svg {
width: 11px;
height: 11px;
transition: transform 0.2s;
flex-shrink: 0
}
.nav-item:hover .nav-link svg {
transform: rotate(180deg)
}
.nav-dropdown {
position: absolute;
top: calc(100% + 6px);
left: 50%;
transform: translateX(-50%) translateY(6px);
width: 460px;
background: var(--card);
border: 1px solid var(--border2);
border-radius: var(--radius);
padding: 14px;
box-shadow: var(--shadow-lg);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3px;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.2s, visibility 0.2s, transform 0.2s
}
.nav-item:hover .nav-dropdown {
opacity: 1;
visibility: visible;
pointer-events: all;
transform: translateX(-50%) translateY(0)
}
.dd-link {
display: flex;
align-items: center;
gap: 7px;
padding: 8px 11px;
border-radius: 6px;
color: var(--text2);
font-size: 12.5px;
font-weight: 500;
transition: var(--transition)
}
.dd-link:hover {
background: rgba(108, 60, 225, 0.12);
color: var(--text)
}
.dd-link svg {
width: 13px;
height: 13px;
color: var(--primary-light);
flex-shrink: 0
}
.header-cta {
display: flex;
align-items: center;
gap: 7px;
flex-shrink: 0
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
padding: 8px;
cursor: pointer;
border-radius: 8px;
background: transparent;
transition: var(--transition)
}
.hamburger:hover {
background: rgba(255, 255, 255, 0.06)
}
.hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--text2);
border-radius: 2px;
transition: var(--transition)
}
.hamburger.open span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px)
}
.hamburger.open span:nth-child(2) {
opacity: 0;
transform: scaleX(0)
}
.hamburger.open span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px)
}
#mobile-nav {
display: none;
position: fixed;
top: 60px;
left: 0;
right: 0;
bottom: 0;
background: var(--bg);
z-index: 99;
overflow-y: auto;
padding: 20px
}
#mobile-nav.open {
display: block
}
.mobile-nav-section {
margin-bottom: 24px
}
.mobile-nav-title {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text3);
margin-bottom: 8px;
padding: 0 8px
}
.mobile-nav-link {
display: flex;
align-items: center;
gap: 10px;
padding: 12px;
border-radius: var(--radius-sm);
color: var(--text2);
font-size: 14px;
font-weight: 500;
transition: var(--transition)
}
.mobile-nav-link:hover {
background: rgba(108, 60, 225, 0.12);
color: var(--text)
}
.mobile-nav-link svg {
width: 15px;
height: 15px;
color: var(--primary-light)
}
.breadcrumb-wrap {
background: var(--bg2);
border-bottom: 1px solid var(--border2);
padding: 9px 0
}
.breadcrumb {
display: flex;
align-items: center;
gap: 5px;
flex-wrap: wrap
}
.breadcrumb a {
color: var(--text3);
font-size: 12.5px;
font-weight: 500;
transition: var(--transition)
}
.breadcrumb a:hover {
color: var(--primary-light)
}
.breadcrumb-sep {
color: var(--text3);
font-size: 11px
}
.breadcrumb span {
color: var(--text2);
font-size: 12.5px;
font-weight: 500
}
#hero {
padding: 48px 0 36px;
position: relative;
overflow: hidden
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none
}
.hero-blob {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.16
}
.hero-blob-1 {
width: 400px;
height: 400px;
background: var(--primary);
top: -80px;
left: -120px
}
.hero-blob-2 {
width: 350px;
height: 350px;
background: var(--accent2);
top: 40px;
right: -80px
}
.hero-inner {
position: relative;
z-index: 1
}
.hero-badge {
margin-bottom: 14px
}
.hero-title {
font-family: var(--font-head);
font-size: clamp(1.8rem, 5vw, 2.8rem);
font-weight: 800;
line-height: 1.15;
margin-bottom: 16px
}
.hero-desc {
color: var(--text2);
font-size: 15px;
line-height: 1.7;
margin-bottom: 28px;
max-width: 560px
}
.hero-actions {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 28px
}
.hero-stats {
display: flex;
gap: 28px;
flex-wrap: wrap
}
.stat-num {
font-family: var(--font-head);
font-size: 22px;
font-weight: 800
}
.stat-label {
font-size: 11.5px;
color: var(--text3);
margin-top: 1px
}
#tool {
padding: 32px 0 56px
}
.tool-wrapper {
background: var(--bg2);
border-radius: 16px;
border: 1px solid var(--border2);
overflow: hidden;
box-shadow: var(--shadow-lg)
}
.tool-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 14px;
background: var(--card);
border-bottom: 1px solid var(--border2);
gap: 8px;
flex-wrap: wrap
}
.toolbar-group {
display: flex;
align-items: center;
gap: 5px;
flex-wrap: wrap
}
.toolbar-sep {
width: 1px;
height: 24px;
background: var(--border2);
flex-shrink: 0
}
.upload-zone {
padding: 16px;
border-bottom: 1px solid var(--border2)
}
.upload-dropzone {
border: 2px dashed rgba(108, 60, 225, 0.3);
border-radius: var(--radius);
padding: 28px 16px;
text-align: center;
cursor: pointer;
transition: var(--transition);
position: relative;
background: rgba(108, 60, 225, 0.03)
}
.upload-dropzone.drag-over {
border-color: var(--primary);
background: rgba(108, 60, 225, 0.09);
transform: scale(1.003)
}
.upload-dropzone:hover {
border-color: var(--primary-light);
background: rgba(108, 60, 225, 0.06)
}
.upload-icon {
width: 50px;
height: 50px;
margin: 0 auto 12px;
background: var(--gradient);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center
}
.upload-icon svg {
width: 22px;
height: 22px;
color: #fff
}
.upload-title {
font-family: var(--font-head);
font-size: 16px;
font-weight: 700;
margin-bottom: 6px
}
.upload-sub {
color: var(--text2);
font-size: 13px;
margin-bottom: 12px
}
.upload-formats {
display: flex;
justify-content: center;
gap: 5px;
flex-wrap: wrap
}
.upload-input {
position: absolute;
inset: 0;
opacity: 0;
cursor: pointer;
width: 100%;
height: 100%
}
.images-section {
padding: 12px 14px;
border-bottom: 1px solid var(--border2)
}
.images-section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px
}
.section-label {
font-size: 11.5px;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--text3)
}
.images-grid {
display: flex;
gap: 7px;
flex-wrap: wrap;
min-height: 52px
}
.img-thumb {
position: relative;
width: 64px;
height: 64px;
border-radius: 7px;
overflow: hidden;
border: 2px solid transparent;
cursor: pointer;
transition: var(--transition);
flex-shrink: 0
}
.img-thumb.selected,
.img-thumb:hover {
border-color: var(--primary)
}
.img-thumb img {
width: 100%;
height: 100%;
object-fit: cover
}
.img-thumb-del {
position: absolute;
top: 2px;
right: 2px;
width: 18px;
height: 18px;
border-radius: 50%;
background: rgba(239, 68, 68, 0.9);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: var(--transition);
cursor: pointer;
z-index: 2
}
.img-thumb:hover .img-thumb-del {
opacity: 1
}
.img-thumb-del svg {
width: 9px;
height: 9px;
color: #fff
}
.img-count {
font-size: 11.5px;
color: var(--text3);
font-weight: 500
}
.img-empty {
color: var(--text3);
font-size: 12.5px;
padding: 8px 0;
text-align: center;
width: 100%
}
#layout-suggestions {
padding: 14px;
border-bottom: 1px solid var(--border2);
display: none
}
#layout-suggestions.visible {
display: block
}
.suggestions-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px
}
.suggestions-title {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text3);
display: flex;
align-items: center;
gap: 6px
}
.suggestions-title span {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text
}
.suggestions-scroll {
display: flex;
gap: 8px;
overflow-x: auto;
padding-bottom: 6px;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin
}
.suggestions-scroll::-webkit-scrollbar {
height: 3px
}
.suggestions-scroll::-webkit-scrollbar-thumb {
background: var(--card2);
border-radius: 2px
}
.suggestion-card {
flex-shrink: 0;
width: 110px;
border-radius: 9px;
overflow: hidden;
background: var(--card);
border: 2px solid var(--border2);
cursor: pointer;
transition: var(--transition);
position: relative
}
.suggestion-card:hover,
.suggestion-card.active-suggestion {
border-color: var(--primary);
box-shadow: 0 0 0 2px rgba(108, 60, 225, 0.25)
}
.suggestion-preview {
width: 110px;
height: 82px;
position: relative;
background: var(--card2)
}
.suggestion-preview canvas {
width: 110px;
height: 82px
}
.suggestion-label {
padding: 5px 7px;
font-size: 10.5px;
font-weight: 600;
color: var(--text2);
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.suggestion-card.active-suggestion .suggestion-label {
color: var(--primary-light)
}
.suggestion-card .active-badge {
position: absolute;
top: 4px;
right: 4px;
width: 16px;
height: 16px;
background: var(--primary);
border-radius: 50%;
display: none;
align-items: center;
justify-content: center
}
.suggestion-card.active-suggestion .active-badge {
display: flex
}
.active-badge svg {
width: 9px;
height: 9px;
color: #fff
}
.tool-body {
display: grid;
grid-template-columns: 260px 1fr;
min-height: 480px
}
.tool-sidebar {
border-right: 1px solid var(--border2);
overflow-y: auto;
max-height: 70vh
}
.tool-canvas-area {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
background: repeating-conic-gradient(#1a1d2e 0% 25%, transparent 0% 50%) 0 0/18px 18px;
padding: 16px;
overflow: hidden;
min-width: 0
}
.sidebar-tab-bar {
display: flex;
border-bottom: 1px solid var(--border2);
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none
}
.sidebar-tab-bar::-webkit-scrollbar {
display: none
}
.sidebar-tab {
flex: 0 0 auto;
padding: 10px 10px;
font-size: 11px;
font-weight: 700;
text-align: center;
color: var(--text3);
cursor: pointer;
border-bottom: 2px solid transparent;
transition: var(--transition);
text-transform: uppercase;
letter-spacing: 0.04em;
white-space: nowrap
}
.sidebar-tab.active {
color: var(--primary-light);
border-bottom-color: var(--primary-light)
}
.sidebar-panel {
display: none;
padding: 14px
}
.sidebar-panel.active {
display: block
}
.control-group {
margin-bottom: 16px
}
.control-label {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 11px;
font-weight: 700;
color: var(--text2);
margin-bottom: 7px;
text-transform: uppercase;
letter-spacing: 0.04em
}
.control-value {
font-size: 11.5px;
font-weight: 700;
color: var(--primary-light);
font-variant-numeric: tabular-nums
}
input[type=range] {
-webkit-appearance: none;
width: 100%;
height: 4px;
border-radius: 4px;
background: var(--card2);
cursor: pointer
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: var(--primary-light);
cursor: pointer;
box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.2)
}
.color-row {
display: flex;
gap: 5px;
flex-wrap: wrap
}
.color-swatch {
width: 26px;
height: 26px;
border-radius: 6px;
cursor: pointer;
border: 2px solid transparent;
transition: var(--transition);
flex-shrink: 0
}
.color-swatch.active,
.color-swatch:hover {
border-color: rgba(255, 255, 255, 0.55);
transform: scale(1.1)
}
.color-input-wrap {
display: flex;
align-items: center;
gap: 7px;
margin-top: 6px
}
.color-input-wrap input[type=color] {
width: 30px;
height: 30px;
border-radius: 5px;
cursor: pointer;
background: none;
padding: 2px;
border: 1px solid var(--border2)
}
.color-input-wrap input[type=text] {
flex: 1;
background: var(--card2);
border: 1px solid var(--border2);
border-radius: 6px;
padding: 5px 9px;
color: var(--text);
font-size: 12.5px
}
.layout-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px
}
.layout-btn {
aspect-ratio: 1.3;
border-radius: 6px;
background: var(--card2);
border: 2px solid var(--border2);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
padding: 5px
}
.layout-btn:hover {
border-color: var(--primary-light)
}
.layout-btn.active {
border-color: var(--primary);
background: rgba(108, 60, 225, 0.12)
}
.text-add-form {
display: flex;
flex-direction: column;
gap: 7px
}
.text-add-form input,
.text-add-form select {
width: 100%;
background: var(--card2);
border: 1px solid var(--border2);
border-radius: 6px;
padding: 7px 10px;
color: var(--text);
font-size: 12.5px;
transition: var(--transition)
}
.text-add-form input:focus,
.text-add-form select:focus {
border-color: var(--primary-light)
}
.text-add-form input::placeholder {
color: var(--text3)
}
.font-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5px
}
select.styled-select {
width: 100%;
background: var(--card2);
border: 1px solid var(--border2);
border-radius: 6px;
padding: 7px 10px;
color: var(--text);
font-size: 12.5px;
-webkit-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6E85' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 9px center
}
.filter-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5px
}
.filter-btn {
padding: 6px 4px;
border-radius: 6px;
background: var(--card2);
border: 2px solid var(--border2);
cursor: pointer;
font-size: 10.5px;
color: var(--text2);
text-align: center;
transition: var(--transition);
font-weight: 600
}
.filter-btn:hover {
border-color: var(--primary-light);
color: var(--text)
}
.filter-btn.active {
border-color: var(--primary);
color: var(--primary-light);
background: rgba(108, 60, 225, 0.1)
}
.fit-mode-toggle {
display: flex;
gap: 5px;
background: var(--card2);
border-radius: 8px;
padding: 4px
}
.fit-btn {
flex: 1;
padding: 6px 8px;
border-radius: 6px;
font-size: 11px;
font-weight: 700;
color: var(--text3);
cursor: pointer;
transition: var(--transition);
text-align: center;
background: transparent;
border: none
}
.fit-btn.active {
background: var(--primary);
color: #fff
}
#canvas-outer {
width: 100%;
position: relative;
overflow: hidden
}
#canvas-outer canvas {
display: block;
border-radius: 8px;
box-shadow: var(--shadow-lg);
touch-action: none
}
#canvas-outer .canvas-container {
margin: 0 auto !important
}
.canvas-hint {
font-size: 11.5px;
color: var(--text3);
text-align: center;
margin-top: 8px
}
.canvas-toolbar {
display: flex;
gap: 5px;
margin-top: 10px;
flex-wrap: wrap;
justify-content: center
}
.size-row {
display: flex;
gap: 5px;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 10px
}
.size-btn {
padding: 4px 12px;
border-radius: 20px;
font-size: 11.5px;
font-weight: 600;
background: var(--card2);
border: 1px solid var(--border2);
color: var(--text2);
cursor: pointer;
transition: var(--transition)
}
.size-btn.active,
.size-btn:hover {
background: rgba(108, 60, 225, 0.15);
border-color: var(--primary-light);
color: var(--primary-light)
}
.validation-msg {
display: flex;
align-items: center;
gap: 7px;
padding: 9px 12px;
border-radius: 6px;
font-size: 12.5px;
font-weight: 500;
margin-top: 7px;
animation: slideIn 0.25s ease
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-4px)
}
to {
opacity: 1;
transform: translateY(0)
}
}
.validation-error {
background: rgba(239, 68, 68, 0.12);
border: 1px solid rgba(239, 68, 68, 0.3);
color: #FCA5A5
}
.validation-success {
background: rgba(16, 185, 129, 0.12);
border: 1px solid rgba(16, 185, 129, 0.3);
color: #6EE7B7
}
.validation-warn {
background: rgba(245, 158, 11, 0.12);
border: 1px solid rgba(245, 158, 11, 0.3);
color: #FCD34D
}
.validation-msg svg {
width: 14px;
height: 14px;
flex-shrink: 0
}
.download-panel {
padding: 14px 16px;
background: var(--card);
border-top: 1px solid var(--border2);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px
}
.download-options {
display: flex;
align-items: flex-end;
gap: 10px;
flex-wrap: wrap
}
.dl-field {
display: flex;
flex-direction: column;
gap: 3px
}
.dl-field label {
font-size: 10.5px;
font-weight: 700;
color: var(--text3);
text-transform: uppercase;
letter-spacing: 0.04em
}
.dl-field select {
background: var(--card2);
border: 1px solid var(--border2);
border-radius: 6px;
padding: 5px 8px;
color: var(--text);
font-size: 12px;
min-width: 100px;
-webkit-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6E85' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 8px center
}
.download-info {
font-size: 11.5px;
color: var(--text3)
}
#about {
padding: 48px 0;
background: var(--bg2)
}
.about-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start
}
.about-title {
font-family: var(--font-head);
font-size: clamp(1.4rem, 2.5vw, 1.9rem);
font-weight: 800;
margin-bottom: 14px
}
.about-text {
color: var(--text2);
font-size: 14.5px;
line-height: 1.8;
margin-bottom: 12px
}
.about-keywords {
display: flex;
gap: 5px;
flex-wrap: wrap;
margin-top: 16px
}
.kw-chip {
padding: 4px 11px;
border-radius: 20px;
background: rgba(108, 60, 225, 0.1);
border: 1px solid rgba(108, 60, 225, 0.2);
color: var(--text2);
font-size: 11.5px;
font-weight: 500
}
.about-cards {
display: flex;
flex-direction: column;
gap: 12px
}
.about-card {
background: var(--card);
border: 1px solid var(--border2);
border-radius: var(--radius);
padding: 16px;
display: flex;
gap: 14px;
align-items: flex-start;
transition: var(--transition)
}
.about-card:hover {
border-color: var(--border);
transform: translateX(3px)
}
.about-card-icon {
width: 38px;
height: 38px;
border-radius: 9px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}
.about-card h4 {
font-family: var(--font-head);
font-size: 13.5px;
font-weight: 700;
margin-bottom: 3px
}
.about-card p {
font-size: 12.5px;
color: var(--text2);
line-height: 1.55
}
#features {
padding: 56px 0
}
.section-header {
text-align: center;
margin-bottom: 40px
}
.section-title {
font-family: var(--font-head);
font-size: clamp(1.5rem, 3vw, 2.2rem);
font-weight: 800;
margin-bottom: 10px
}
.section-sub {
color: var(--text2);
font-size: 15px;
max-width: 500px;
margin: 0 auto
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px
}
.feature-card {
background: var(--card);
border: 1px solid var(--border2);
border-radius: var(--radius);
padding: 22px;
transition: var(--transition)
}
.feature-card:hover {
transform: translateY(-3px);
border-color: var(--border);
box-shadow: 0 10px 36px rgba(108, 60, 225, 0.18)
}
.feature-icon {
width: 44px;
height: 44px;
border-radius: 11px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 14px
}
.feature-title {
font-family: var(--font-head);
font-size: 15px;
font-weight: 700;
margin-bottom: 7px
}
.feature-desc {
color: var(--text2);
font-size: 13px;
line-height: 1.6
}
#how {
padding: 56px 0;
background: var(--bg2)
}
.steps-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
position: relative
}
.steps-grid::before {
content: '';
position: absolute;
top: 27px;
left: 12%;
right: 12%;
height: 2px;
background: linear-gradient(to right, var(--primary), var(--accent2));
z-index: 0
}
.step-card {
background: var(--card);
border: 1px solid var(--border2);
border-radius: var(--radius);
padding: 20px;
text-align: center;
position: relative;
z-index: 1;
transition: var(--transition)
}
.step-card:hover {
transform: translateY(-3px);
border-color: var(--border)
}
.step-num {
width: 52px;
height: 52px;
border-radius: 50%;
background: var(--gradient);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 14px;
font-family: var(--font-head);
font-size: 19px;
font-weight: 800;
color: #fff
}
.step-title {
font-family: var(--font-head);
font-size: 14px;
font-weight: 700;
margin-bottom: 7px
}
.step-desc {
color: var(--text2);
font-size: 12.5px;
line-height: 1.6
}
#faq {
padding: 56px 0
}
.faq-wrap {
max-width: 720px;
margin: 0 auto
}
.faq-item {
border: 1px solid var(--border2);
border-radius: var(--radius);
margin-bottom: 8px;
overflow: hidden;
transition: var(--transition)
}
.faq-item.open {
border-color: var(--border)
}
.faq-q {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 18px;
cursor: pointer;
gap: 14px
}
.faq-q-text {
font-size: 14.5px;
font-weight: 600;
line-height: 1.4;
flex: 1
}
.faq-toggle {
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--card2);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}
.faq-toggle svg {
width: 14px;
height: 14px;
color: var(--primary-light);
transition: transform 0.25s
}
.faq-item.open .faq-toggle svg {
transform: rotate(45deg)
}
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1)
}
.faq-item.open .faq-a {
max-height: 300px
}
.faq-a-inner {
padding: 0 18px 16px;
color: var(--text2);
font-size: 13.5px;
line-height: 1.7
}
#cta {
padding: 56px 0
}
.cta-inner {
background: var(--gradient2);
border: 1px solid var(--border2);
border-radius: 18px;
padding: 48px 36px;
text-align: center;
position: relative;
overflow: hidden
}
.cta-blob {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.1;
pointer-events: none
}
.cta-blob-1 {
width: 380px;
height: 380px;
background: var(--primary);
top: -90px;
left: -90px
}
.cta-blob-2 {
width: 320px;
height: 320px;
background: var(--accent2);
bottom: -70px;
right: -70px
}
.cta-title {
font-family: var(--font-head);
font-size: clamp(1.7rem, 3.5vw, 2.6rem);
font-weight: 800;
margin-bottom: 14px;
position: relative;
z-index: 1
}
.cta-desc {
color: var(--text2);
font-size: 15px;
max-width: 480px;
margin: 0 auto 32px;
position: relative;
z-index: 1
}
.cta-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
position: relative;
z-index: 1
}
.cta-action-link {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 13px 26px;
border-radius: 10px;
font-size: 14.5px;
font-weight: 700;
transition: var(--transition)
}
.cta-primary {
background: var(--gradient);
color: #fff;
box-shadow: 0 4px 24px rgba(108, 60, 225, 0.4)
}
.cta-primary:hover {
transform: translateY(-2px)
}
.cta-secondary {
background: rgba(255, 255, 255, 0.06);
color: var(--text);
border: 1.5px solid rgba(255, 255, 255, 0.12)
}
.cta-secondary:hover {
background: rgba(255, 255, 255, 0.1)
}
#footer {
background: var(--bg2);
border-top: 1px solid var(--border2);
padding: 44px 0 0
}
.footer-top {
display: grid;
grid-template-columns: 1.6fr 1fr 1fr;
gap: 36px;
padding-bottom: 36px
}
.footer-brand .logo {
margin-bottom: 14px
}
.footer-desc {
color: var(--text3);
font-size: 13px;
line-height: 1.7;
margin-bottom: 18px
}
.footer-col-title {
font-family: var(--font-head);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text3);
margin-bottom: 14px
}
.footer-links-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3px
}
.footer-link {
display: flex;
align-items: center;
gap: 5px;
padding: 6px 5px;
border-radius: 5px;
color: var(--text3);
font-size: 12.5px;
font-weight: 500;
transition: var(--transition)
}
.footer-link:hover {
color: var(--text);
background: rgba(255, 255, 255, 0.04)
}
.footer-link svg {
width: 11px;
height: 11px;
color: var(--primary-light);
flex-shrink: 0
}
.footer-bottom {
border-top: 1px solid var(--border2);
padding: 18px 0;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px
}
.footer-copy {
font-size: 12px;
color: var(--text3)
}
.footer-legal {
display: flex;
gap: 14px;
flex-wrap: wrap
}
.footer-legal a {
font-size: 12px;
color: var(--text3);
transition: var(--transition)
}
.footer-legal a:hover {
color: var(--text2)
}
.disclaimer {
padding: 14px 18px;
background: rgba(245, 158, 11, 0.07);
border-top: 1px solid rgba(245, 158, 11, 0.15);
font-size: 11.5px;
color: var(--text3);
line-height: 1.6;
text-align: center
}
.disclaimer a {
color: var(--accent);
text-decoration: underline
}
#cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
background: var(--card);
border-top: 1px solid var(--border2);
padding: 14px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
flex-wrap: wrap;
box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.4);
transform: translateY(0);
transition: transform 0.3s ease
}
#cookie-banner.hidden {
transform: translateY(110%);
pointer-events: none
}
.cookie-text {
font-size: 13px;
color: var(--text2);
flex: 1
}
.cookie-text a {
color: var(--primary-light);
text-decoration: underline
}
.cookie-btns {
display: flex;
gap: 8px;
flex-shrink: 0
}
#progress-bar {
position: fixed;
top: 0;
left: 0;
height: 3px;
background: var(--gradient);
z-index: 999;
transition: width 0.3s ease;
border-radius: 0 2px 2px 0;
box-shadow: 0 0 8px rgba(108, 60, 225, 0.6)
}
#toast-container {
position: fixed;
top: 70px;
right: 16px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 7px;
pointer-events: none
}
.toast {
padding: 11px 16px;
border-radius: 7px;
font-size: 13px;
font-weight: 500;
display: flex;
align-items: center;
gap: 9px;
box-shadow: var(--shadow);
pointer-events: all;
animation: toastIn 0.3s ease;
max-width: min(300px, calc(100vw - 32px))
}
.toast.success {
background: #10B981;
color: #fff
}
.toast.error {
background: #EF4444;
color: #fff
}
.toast.info {
background: var(--primary);
color: #fff
}
.toast.warning {
background: #F59E0B;
color: #fff
}
.toast svg {
width: 15px;
height: 15px;
flex-shrink: 0
}
@keyframes toastIn {
from {
opacity: 0;
transform: translateX(16px)
}
to {
opacity: 1;
transform: translateX(0)
}
}
.toast.fade-out {
animation: toastOut 0.3s ease forwards
}
@keyframes toastOut {
from {
opacity: 1
}
to {
opacity: 0;
transform: translateX(16px)
}
}
::-webkit-scrollbar {
width: 5px;
height: 5px
}
::-webkit-scrollbar-track {
background: var(--bg2)
}
::-webkit-scrollbar-thumb {
background: var(--card2);
border-radius: 3px
}
@media(max-width:1024px) {
.hero-inner {
max-width: 100%
}
.features-grid {
grid-template-columns: 1fr 1fr
}
.steps-grid {
grid-template-columns: 1fr 1fr
}
.steps-grid::before {
display: none
}
.about-inner {
grid-template-columns: 1fr
}
.footer-top {
grid-template-columns: 1fr 1fr
}
.tool-body {
grid-template-columns: 240px 1fr
}
}
@media(max-width:768px) {
.desktop-nav,
.header-cta {
display: none
}
.hamburger {
display: flex
}
.features-grid {
grid-template-columns: 1fr
}
.steps-grid {
grid-template-columns: 1fr 1fr
}
.footer-top {
grid-template-columns: 1fr
}
.footer-links-grid {
grid-template-columns: 1fr
}
.cta-inner {
padding: 32px 20px
}
.download-panel {
flex-direction: column;
align-items: flex-start
}
.tool-body {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr
}
.tool-sidebar {
border-right: none;
border-bottom: 1px solid var(--border2);
max-height: none
}
.sidebar-panel.active {
display: block
}
.tool-canvas-area {
padding: 12px 8px
}
.canvas-toolbar {
gap: 4px
}
.canvas-toolbar .btn {
padding: 6px 8px;
font-size: 11px
}
.tool-toolbar {
padding: 10px 12px
}
.suggestion-card {
width: 95px
}
.suggestion-preview {
width: 95px;
height: 70px
}
.suggestion-preview canvas {
width: 95px;
height: 70px
}
}
@media(max-width:480px) {
.hero-title {
font-size: 1.65rem
}
.steps-grid {
grid-template-columns: 1fr
}
.hero-actions {
flex-direction: column;
width: 100%
}
.hero-actions .btn {
width: 100%;
justify-content: center
}
.cookie-btns {
width: 100%;
justify-content: flex-end
}
.images-grid {
gap: 5px
}
.img-thumb {
width: 56px;
height: 56px
}
.canvas-toolbar .btn span {
display: none
}
.size-row {
gap: 4px
}
.size-btn {
padding: 3px 9px;
font-size: 11px
}
.suggestions-scroll {
gap: 6px
}
.suggestion-card {
width: 88px
}
.suggestion-preview {
width: 88px;
height: 66px
}
.suggestion-preview canvas {
width: 88px;
height: 66px
}
}