* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #1a1f2e;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 60px 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    color: #a0aec0;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.highlight {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff69b4 100%);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 77, 143, 0.4);
}

.cta-large {
    padding: 22px 60px;
    font-size: 20px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    background: #1a1f2e;
    position: relative;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 40px;
    font-size: 24px;
    font-weight: 600;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: #a0aec0;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-subtext {
    margin-top: 20px;
    color: #718096;
    font-size: 14px;
}

.hero-stats {
    display: flex;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.stat-stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: #718096;
    font-size: 14px;
}

/* Characters Section */
.characters-section {
    background: #1a1f2e;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.character-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.character-card {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.character-card:hover,
.character-card-link:hover .character-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 105, 180, 0.3);
}

.character-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.character-image-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.character-image-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.character-image-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.character-image-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.character-status {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #48bb78;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.favorite-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.favorite-icon:hover {
    background: rgba(255, 77, 143, 0.3);
    transform: scale(1.1);
}

.character-info {
    padding: 25px;
}

.character-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.character-description {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 15px;
}

.character-traits {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.trait-tag {
    padding: 6px 14px;
    background: rgba(255, 77, 143, 0.15);
    border: 1px solid rgba(255, 77, 143, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #ff69b4;
    font-weight: 500;
}

.character-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 16px;
}

.rating-number {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 600;
}

/* Add Character Card */
.add-character {
    background: linear-gradient(135deg, rgba(255, 77, 143, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 2px dashed rgba(255, 105, 180, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-character-content {
    text-align: center;
    padding: 40px 20px;
}

.plus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4d8f 0%, #ff69b4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
    color: white;
}

.add-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.discover-text {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 25px;
}

.explore-button {
    padding: 12px 30px;
    background: rgba(255, 77, 143, 0.2);
    border: 1px solid rgba(255, 77, 143, 0.4);
    border-radius: 25px;
    color: #ff69b4;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-button:hover {
    background: rgba(255, 77, 143, 0.3);
    transform: scale(1.05);
}

/* Create Character Section */
.create-section {
    background: #1a1f2e;
}

.create-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.creation-panel {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-section {
    margin-bottom: 35px;
}

.panel-section:last-child {
    margin-bottom: 0;
}

.panel-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff69b4;
}

.icon {
    font-size: 20px;
}

.trait-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trait-button {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #a0aec0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.trait-button:hover {
    background: rgba(255, 77, 143, 0.1);
    border-color: rgba(255, 77, 143, 0.3);
}

.trait-button.active {
    background: rgba(255, 77, 143, 0.2);
    border-color: rgba(255, 77, 143, 0.4);
    color: #ff69b4;
}

.slider-container {
    margin-bottom: 25px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #e2e8f0;
}

.slider-value {
    color: #ff69b4;
    font-weight: 600;
}

.slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.slider-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #ff4d8f 0%, #ff69b4 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: grab;
    transition: left 0.3s ease;
}

.slider-thumb:active {
    cursor: grabbing;
}

.voice-select-wrapper {
    position: relative;
}

.voice-select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23a0aec0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.voice-select:focus {
    outline: none;
    border-color: rgba(255, 77, 143, 0.4);
}

/* Character Preview */
.character-preview {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 100px;
}

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

.preview-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.preview-info {
    flex: 1;
}

.preview-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #48bb78;
    font-size: 14px;
}

.preview-voice {
    color: #a0aec0;
    font-size: 14px;
}

.preview-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.preview-character {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
}

.preview-labels {
    margin-bottom: 15px;
}

.label-tag {
    font-size: 12px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.preview-traits {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.preview-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.stat-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-name {
    font-size: 14px;
    min-width: 80px;
    color: #e2e8f0;
}

.stat-bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4d8f 0%, #ff69b4 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.stat-value {
    font-size: 14px;
    color: #a0aec0;
    min-width: 45px;
    text-align: right;
}

.voice-note {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.waveform {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-bottom: 15px;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(180deg, #ff4d8f 0%, #ff69b4 100%);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 40px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 45px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 38px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 42px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 30px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 35px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 40px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 32px; animation-delay: 1s; }
.wave-bar:nth-child(12) { height: 38px; animation-delay: 1.1s; }
.wave-bar:nth-child(13) { height: 35px; animation-delay: 0.2s; }
.wave-bar:nth-child(14) { height: 28px; animation-delay: 0.4s; }
.wave-bar:nth-child(15) { height: 32px; animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

.voice-note p {
    color: #a0aec0;
    font-size: 13px;
}

/* Chat Section */
.chat-section {
    background: #1a1f2e;
}

.chat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.chat-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 143, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.feature-text p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 15px;
}

.chat-mockup {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chat-user-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #48bb78;
    font-size: 13px;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    min-height: 300px;
}

.message {
    padding: 15px 20px;
    border-radius: 18px;
    max-width: 85%;
    line-height: 1.6;
    font-size: 15px;
}

.message-user {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff69b4 100%);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.message-ai {
    background: rgba(255, 255, 255, 0.08);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    color: #e2e8f0;
}

.typing-indicator {
    align-self: flex-start;
}

.typing-dots {
    display: flex;
    gap: 6px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #a0aec0;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
}

.chat-input {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;
    outline: none;
    padding: 8px;
}

.chat-input input::placeholder {
    color: #718096;
}

.send-button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff4d8f 0%, #ff69b4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.send-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 77, 143, 0.4);
}

/* Voice Section */
.voice-section {
    background: #1a1f2e;
}

.voice-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.voice-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.voice-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voice-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    line-height: 1.6;
    color: #e2e8f0;
    position: relative;
    padding-left: 30px;
}

.voice-features li::before {
    content: "●";
    color: #ff69b4;
    font-size: 28px;
    position: absolute;
    left: 0;
}

.button-icon {
    font-size: 20px;
}

.phone-mockup {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    border-radius: 45px;
    padding: 25px;
    border: 10px solid #2d3748;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 35px;
    padding: 25px 20px;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.call-header {
    text-align: center;
    margin-bottom: 30px;
}

.call-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.call-avatar-large {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.call-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.call-status {
    color: #48bb78;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.call-time {
    color: #a0aec0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sound-icon {
    font-size: 16px;
}

.audio-visualizer {
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 20px 0;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.audio-bar {
    width: 5px;
    background: linear-gradient(180deg, #ff4d8f 0%, #ff69b4 100%);
    border-radius: 3px;
    animation: audioWave 1s infinite ease-in-out;
}

.audio-bar:nth-child(1) { height: 25px; animation-delay: 0s; }
.audio-bar:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.audio-bar:nth-child(3) { height: 55px; animation-delay: 0.2s; }
.audio-bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.audio-bar:nth-child(5) { height: 65px; animation-delay: 0.4s; }
.audio-bar:nth-child(6) { height: 50px; animation-delay: 0.5s; }
.audio-bar:nth-child(7) { height: 60px; animation-delay: 0.6s; }
.audio-bar:nth-child(8) { height: 40px; animation-delay: 0.7s; }
.audio-bar:nth-child(9) { height: 55px; animation-delay: 0.8s; }
.audio-bar:nth-child(10) { height: 35px; animation-delay: 0.9s; }
.audio-bar:nth-child(11) { height: 50px; animation-delay: 0.2s; }
.audio-bar:nth-child(12) { height: 45px; animation-delay: 0.4s; }
.audio-bar:nth-child(13) { height: 38px; animation-delay: 0.6s; }
.audio-bar:nth-child(14) { height: 52px; animation-delay: 0.8s; }
.audio-bar:nth-child(15) { height: 42px; animation-delay: 1s; }

@keyframes audioWave {
    0%, 100% {
        transform: scaleY(0.4);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.call-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.call-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.call-button.mute,
.call-button.speaker {
    background: rgba(255, 255, 255, 0.1);
}

.call-button.mute:hover,
.call-button.speaker:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.call-button.end {
    background: #ef4444;
    width: 70px;
    height: 70px;
}

.call-button.end:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Visualize Section */
.visualize-section {
    background: #1a1f2e;
}

.visualize-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.customization-panel {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px;
    border-radius: 12px;
}

.tab-button {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
    background: rgba(255, 77, 143, 0.2);
    color: #ff69b4;
}

.outfit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.outfit-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.outfit-card:hover {
    transform: scale(1.05);
}

.outfit-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.outfit-card.selected .outfit-image {
    border-color: #ff69b4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

.outfit-casual {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.outfit-elegant {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
}

.outfit-sporty {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.outfit-label {
    text-align: center;
    font-size: 13px;
    color: #e2e8f0;
}

.palette-section {
    margin-bottom: 30px;
}

.palette-section h4 {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.palette-options {
    display: flex;
    gap: 12px;
}

.palette-option {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

.palette-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.palette-option.selected {
    border-color: #ff69b4;
    background: rgba(255, 77, 143, 0.15);
    color: #ff69b4;
}

.accessories-section {
    margin-bottom: 30px;
}

.accessories-section h4 {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.accessory-option {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    transition: all 0.3s ease;
    color: #e2e8f0;
}

.accessory-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.accessory-option.selected {
    background: rgba(255, 77, 143, 0.2);
    border-color: #ff69b4;
    color: #ff69b4;
}

.apply-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff4d8f 0%, #ff69b4 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 77, 143, 0.4);
}

.visualize-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.visualize-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 105, 180, 0.3);
}

.feature-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.feature-box p {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: #1a1f2e;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4d8f 0%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #a0aec0;
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 105, 180, 0.3);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #48bb78;
    font-size: 13px;
}

.feature-badges-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 105, 180, 0.3);
}

.feature-badge-icon {
    font-size: 22px;
}

.feature-badge-text {
    font-size: 15px;
    color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .create-content,
    .chat-content,
    .voice-content,
    .visualize-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .characters-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .character-preview {
        position: static;
    }

    .visualize-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 40px 20px 40px;
    }

    .characters-section {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stats-row {
        display: none;
    }

    .stat-box .stat-number {
        font-size: 42px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .character-card {
        font-size: 14px;
    }

    .character-image {
        height: 250px;
    }

    .character-name {
        font-size: 18px;
    }

    .character-description {
        font-size: 12px;
    }

    .character-info {
        padding: 20px;
    }

    .visualize-features {
        display: none;
    }

    .feature-badges-row {
        gap: 15px;
    }

    .feature-badge {
        padding: 12px 20px;
    }

    .phone-mockup {
        max-width: 100%;
    }

    .outfit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .character-image {
        height: 280px;
    }

    .visualize-features {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    background: #0a0e1a;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
}

.reddit-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reddit-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 69, 0, 0.5);
    transform: translateY(-2px);
}

.reddit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.reddit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reddit-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.reddit-subtitle {
    color: #a0aec0;
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
    color: #718096;
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-link {
    color: #ff69b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff4d8f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 30px;
    }
    
    .reddit-link {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 12px;
        line-height: 1.6;
    }
}
