:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #10b981;
    --secondary-hover: #059669;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --gray-color: #6b7280;
    --light-gray: #e5e7eb;
    --danger-color: #ef4444;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-hover);
}

.secondary-btn {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--light-gray);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-image {
    flex: 1;
    text-align: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Generator Section */
.generator {
    padding: 80px 0;
    background-color: white;
}

.generator-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-indicator.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.step-indicator.completed .step-number {
    background-color: var(--success-color);
    color: white;
}

.step-connector {
    flex: 1;
    height: 3px;
    background-color: var(--light-gray);
    margin: 0 15px;
    position: relative;
    top: -15px;
    z-index: 1;
}

.step-connector.active {
    background-color: var(--primary-color);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.content-input-group {
    margin-bottom: 30px;
}

.content-type-selector {
    display: flex;
    margin-bottom: 15px;
}

.content-type {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-type i {
    margin-right: 8px;
}

.content-type.active {
    background-color: rgba(79, 70, 229, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.form-help-text {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-color);
}

.form-help-text i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-navigation button:only-child {
    margin-left: auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

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

.requirements-section h3 {
    margin-bottom: 15px;
}

.platform-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.platform-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.platform-option i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.platform-option span {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-check {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.platform-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.05);
}

.platform-option.active {
    border-color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.1);
}

.platform-option.active .platform-check {
    opacity: 1;
    transform: scale(1);
}

.platform-option.active .platform-icon {
    color: var(--primary-color);
}

.selected-platforms-summary {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.selected-platforms-summary h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.selected-platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selected-platform-item {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 14px;
}

.selected-platform-item i {
    margin-right: 5px;
}

.empty-selection {
    color: var(--gray-color);
    font-style: italic;
    font-size: 14px;
}

.platform-config {
    display: none;
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

.platform-config.active {
    display: block;
}

.config-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.config-header i {
    font-size: 24px;
    margin-right: 10px;
    color: var(--primary-color);
}

.config-header h4 {
    margin-bottom: 0;
}

.link-preview {
    margin-bottom: 30px;
}

.link-preview h3 {
    margin-bottom: 15px;
}

.preview-container {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.preview-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.preview-logo h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.preview-title {
    font-size: 16px;
    opacity: 0.9;
}

.preview-requirements {
    padding: 20px;
    background-color: white;
    min-height: 100px;
}

.preview-requirement {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9fafb;
    border-radius: 6px;
}

.preview-requirement-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.preview-requirement-text {
    flex: 1;
}

.preview-requirement-text h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.preview-requirement-text p {
    font-size: 14px;
    color: var(--gray-color);
}

.preview-footer {
    padding: 15px;
    background-color: #f9fafb;
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.generate-button-container {
    text-align: center;
    margin: 30px 0;
}

.generate-button-container button {
    padding: 15px 30px;
    font-size: 18px;
}

.result-section {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    animation: fadeIn 0.5s ease;
}

.result-section.active {
    display: block;
}

.success-message {
    text-align: center;
    margin-bottom: 30px;
}

.success-message i {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.success-message h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.success-message p {
    color: var(--gray-color);
}

.link-result {
    display: flex;
    margin-bottom: 20px;
}

.link-result input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    background-color: #f9fafb;
    cursor: text;
}

.link-result button {
    border-radius: 0 6px 6px 0;
}

.share-options {
    margin-bottom: 30px;
}

.share-options h4 {
    margin-bottom: 15px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

#share-twitter {
    background-color: #1DA1F2;
}

#share-facebook {
    background-color: #4267B2;
}

#share-telegram {
    background-color: #0088cc;
}

#share-whatsapp {
    background-color: #25D366;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-container {
    text-align: center;
    margin-bottom: 30px;
}

.qr-code-container h4 {
    margin-bottom: 15px;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#qrcode {
    margin-bottom: 15px;
    padding: 10px;
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
}

.create-another {
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: var(--gray-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9fafb;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-content p {
    color: #d1d5db;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* Unlock Page */
.unlock-page {
    display: none;
    padding: 40px 0;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.unlock-page.active {
    display: block;
}

.unlock-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.unlock-header .logo {
    margin-bottom: 20px;
}

.unlock-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

.unlock-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.unlock-header p {
    font-size: 16px;
    color: #666;
}

.unlock-progress {
    margin-bottom: 30px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.progress-bar {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #4e73df;
    width: 0;
    transition: width 0.3s ease;
}

.unlock-requirements {
    margin-bottom: 30px;
}

.requirement-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.requirement-item.completed {
    background-color: #e8f4f8;
    border-color: #b6e0fe;
}

.requirement-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4e73df;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.requirement-content {
    flex-grow: 1;
}

.requirement-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.requirement-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.requirement-action {
    margin-left: 15px;
}

/* Action Button Standardization */
.action-btn {
    padding: 8px 15px;
    border-radius: 4px;
    background-color: #4e73df;
    color: #fff;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 160px;  
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-btn i {
    margin-right: 5px;
}

.action-btn:hover {
    background-color: #3a5fc8;
}

.action-btn.completed {
    background-color: #28a745;
}

.action-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.locked-content {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}

.locked-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.unlocked-content {
    text-align: center;
    padding: 30px;
    background-color: #e8f4f8;
    border-radius: 8px;
    margin-bottom: 30px;
}

.unlocked-content h3 {
    font-size: 22px;
    color: #28a745;
    margin-bottom: 20px;
}

.content-display {
    margin-top: 20px;
}

.text-content {
    text-align: center;
}

.unlocked-text {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 15px;
    text-align: left;
}

/* Ad Container Styles */
.ad-container {
    max-width: 600px;
    margin: 0 auto 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.ad-title {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.ad-timer {
    font-size: 14px;
    font-weight: 600;
    color: #4e73df;
}

.ad-content {
    padding: 15px;
    text-align: center;
}

.ad-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.ad-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.ad-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.ad-progress {
    font-size: 12px;
    color: #666;
}

.ad-skip {
    padding: 5px 10px;
    font-size: 12px;
    background-color: #4e73df;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-skip:hover:not(:disabled) {
    background-color: #3a5fc8;
}

.ad-skip:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
}

.unlock-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.unlock-footer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.unlock-footer a {
    color: #4e73df;
    text-decoration: none;
}

.unlock-footer a:hover {
    text-decoration: underline;
}

.privacy-notice {
    font-size: 12px;
    color: #999;
}

.unlock-footer-legal {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

.footer-legal-links {
    margin-bottom: 15px;
}

.footer-legal-links a {
    color: #666;
    margin: 0 10px;
    font-size: 14px;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #4e73df;
    text-decoration: underline;
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.primary-btn {
    background-color: #4e73df;
    color: #fff;
}

.primary-btn:hover {
    background-color: #3a5fc8;
    color: #fff;
}

.primary-btn:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
}

/* Error page styles */
.error-container {
    text-align: center;
}

.error-image {
    font-size: 5rem;
    color: #9ca3af;
    margin: 2rem 0;
}

.error-actions {
    margin-top: 2rem;
}

/* Notification styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification-icon {
    margin-right: 10px;
    font-size: 1.25rem;
}

.notification-success .notification-icon {
    color: #10b981;
}

.notification-error .notification-icon {
    color: #ef4444;
}

.notification-info .notification-icon {
    color: #3b82f6;
}

.notification-message {
    font-size: 0.875rem;
    color: #374151;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .generator-form {
        padding: 30px 20px;
    }
    
    .platform-selector {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Legal pages */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section p, .legal-section ul {
    color: #666;
    line-height: 1.6;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

/* Unlock page footer */
.unlock-footer-legal {
    background-color: #1a202c;
    color: #fff;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-legal-links ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.footer-legal-links ul li {
    margin: 0 1rem;
}

.footer-legal-links ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.unlock-footer-legal .footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #a0aec0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* Share Section Styles */
.share-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.share-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.share-header {
    margin-bottom: 30px;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 48px;
    color: #28a745;
}

.share-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.share-header p {
    font-size: 16px;
    color: #666;
}

.link-container {
    display: flex;
    margin-bottom: 30px;
}

.unlock-link-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.copy-btn {
    border-radius: 0 5px 5px 0;
}

.share-options {
    margin-bottom: 30px;
}

.share-options h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.twitter {
    background-color: #1DA1F2;
}

.facebook {
    background-color: #4267B2;
}

.telegram {
    background-color: #0088cc;
}

.whatsapp {
    background-color: #25D366;
}

.qr-section {
    margin-top: 30px;
}

.qr-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.qrcode-display {
    display: inline-block;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.download-qr-btn {
    background-color: #6c757d;
    color: #fff;
}

.download-qr-btn:hover {
    background-color: #5a6268;
    color: #fff;
}

.secondary-btn {
    background-color: #6c757d;
    color: #fff;
}

.secondary-btn:hover {
    background-color: #5a6268;
    color: #fff;
}

/* Unlocked Content Styling */
.share-content {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.share-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.qr-container {
    margin: 0 auto;
    max-width: 200px;
}

.qrcode-display {
    margin: 0 auto 15px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: inline-block;
}

.download-qr-btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    background-color: #6c757d;
    color: #fff;
}

.download-qr-btn:hover {
    background-color: #5a6268;
}

/* Powered by section */
.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-size: 14px;
    color: #d1d5db;
}

.powered-by img {
    height: 24px;
    margin-left: 8px;
}
