:root {
    --primary-color: #0030F0;
    --primary-light: #3e62ff;
    --background-color: #f2f6ff;
    --text-color: #172b4d;
    --light-text: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 20px rgba(0, 48, 240, 0.1);
    --success-color: #10b981;
    --danger-color: #ef4444;
    --card-background: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--text-color);
    font-family: 'Bpg Glaho Arial', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.dark-mode {
    --background-color: #0a1434;
    --text-color: #ffffff;
    --card-background: #122153;
    --border-color: rgba(255, 255, 255, 0.1);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #0138D4;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 200px;
    margin-top: 7px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-mode-toggle, .language-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.dark-mode-toggle:hover, .language-toggle:hover {
    background-color: var(--border-color);
}

.flag-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    opacity: 0.5;
}

.square {
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.circle {
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.square:nth-child(1) {
    top: 15%;
    left: 10%;
}

.circle:nth-child(2) {
    top: 25%;
    right: 15%;
}

.square:nth-child(3) {
    bottom: 20%;
    left: 20%;
}

.circle:nth-child(4) {
    bottom: 15%;
    right: 10%;
}

.domain-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.container-boxed {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.domain-name {
    font-family: 'Alk Sanet', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.domain-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-tag {
    background: var(--card-background);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.sale-notice {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.asking-price {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Alk Sanet';
}

.seo-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.seo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.seo-item {
    background: var(--card-background);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 120px;
    border: 1px solid var(--border-color);
}

.seo-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.seo-value {
    font-size: 1.2rem;
    font-weight: bold;
}

.owner-message {
    margin: 30px 0;
    padding: 20px;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

/* Traffic Statistics Styles */
.traffic-stats-section {
    margin: 40px 0;
    text-align: left;
}

.stats-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-color);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stats-card {
    background: var(--card-background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-2px);
}

.stats-icon {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.stats-content {
    flex: 1;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 5px;
}

.stats-sublabel {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 3px;
}

.stats-change {
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.stats-change.positive {
    color: var(--success-color);
}

.stats-change.negative {
    color: var(--danger-color);
}

/* Tabs Styles */
.stats-tabs {
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tab-button {
    flex: 1;
    padding: 15px 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-button:hover {
    opacity: 1;
    background: rgba(0, 48, 240, 0.1);
}

.tab-button.active {
    opacity: 1;
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    padding: 25px;
}

.tab-content.active {
    display: block;
}

/* Chart Container */
.chart-container {
    height: 300px;
    margin-bottom: 20px;
    position: relative;
}

/* Overview Stats */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.overview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--background-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.overview-label {
    font-weight: 500;
}

.overview-value {
    font-weight: bold;
}

.unique {
    color: var(--primary-light);
    font-size: 0.9em;
}

/* Geography Stats */
.geography-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.geography-section {
    max-height: 400px;
    overflow-y: auto;
}

.geography-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.geography-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.geography-item:last-child {
    border-bottom: none;
}

.country-info, .city-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-flag, .city-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.country-name, .city-name {
    font-weight: 500;
}

.country-stats, .city-stats {
    display: flex;
    align-items: center;
    gap: 5px;
}

.country-hits, .city-hits {
    font-weight: bold;
}

/* Devices Breakdown */
.devices-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.device-section {
    max-height: 350px;
    overflow-y: auto;
}

.browser-icon, .os-icon, .device-icon-img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    object-fit: contain;
}

.device-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.device-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.device-item:last-child {
    border-bottom: none;
}

.device-name {
    font-weight: 500;
}

.device-stats {
    font-weight: bold;
}

/* Referrals */
.referral-stats {
    max-height: 500px;
    overflow-y: auto;
}

.referral-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.referral-item:last-child {
    border-bottom: none;
}

.referral-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.referrer-favicon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.referrer-name {
    font-weight: 500;
}

.referral-hits {
    font-weight: bold;
}

/* Form Styles */
.inquiry-form {
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 500px;
    width: 100%;
    margin: 40px auto 0;
    border: 1px solid var(--border-color);
}

.inquiry-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Bpg Glaho Arial', Arial, sans-serif;
    background: var(--card-background);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-description {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 5px;
}

.form-notice {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--background-color);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background: var(--primary-light);
}

/* Info Tooltip Styles */
.info-icon {
    cursor: pointer;
    margin-left: 5px;
    color: var(--primary-color);
    position: relative;
}

.info-icon:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0030f0;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 22px;
    font-family: 'Alk Sanet';
    width: 400px;
    z-index: 10;
    margin-bottom: 5px;
}

.dark-mode .info-icon:hover:after {
    background: #fff;
    color: #333;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: 'Alk Sanet', sans-serif;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border-color);
}

.success-message h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.success-message button {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.success-message button:hover {
    background: var(--primary-light);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        display: block;
    }
   .seo-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns for all items */
        gap: 10px;
    }
    
    .seo-row {
        display: contents; /* Makes the row wrappers "invisible" */
    }
    
    .seo-item {
        min-width: 0;
        padding: 12px;
    }
    
    .seo-label {
        font-size: 0.85rem;
    }
    
    .seo-value {
        font-size: 1.1rem;
    }
    .info-icon:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    background: #0030f0;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 22px;
    font-family: 'Alk Sanet';
    width: 160px;
    z-index: 10;
    margin-bottom: 5px;
}
    .domain-name {
        font-size: 2rem;
    }
    
    .asking-price {
        font-size: 1.5rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        padding: 20px;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1 1 50%;
        font-size: 0.8rem;
        padding: 12px 8px;
    }
    
    .devices-breakdown {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .visitor-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .visitor-info {
        margin: 0;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .inquiry-form {
        padding: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .domain-name {
        font-size: 1.8rem;
    }
    
    .asking-price {
        font-size: 1.3rem;
    }
    
    .stats-title {
        font-size: 1.5rem;
    }
    
    .stats-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stats-icon {
        font-size: 1.5rem;
    }
    
    .stats-number {
        font-size: 1.3rem;
    }
    
    .tab-button {
        font-size: 0.75rem;
        padding: 10px 6px;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .chart-container {
        height: 200px;
    }
    
    .geography-item,
    .device-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .country-info,
    .country-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .visitor-time {
        min-width: auto;
        width: 100%;
    }
    
    .visitor-tech {
        flex-wrap: wrap;
    }
}

/* Print Styles */
@media print {
    .header-controls,
    .bg-elements,
    .inquiry-form,
    .tab-buttons,
    .success-message,
    .overlay {
        display: none !important;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .traffic-stats-section {
        page-break-inside: avoid;
    }
    
    .stats-cards {
        display: block;
    }
    
    .stats-card {
        margin-bottom: 15px;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .chart-container {
        height: 300px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000;
    }
    
    .dark-mode {
        --border-color: #fff;
    }
    
    .stats-card,
    .tab-content,
    .inquiry-form {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .stats-card:hover {
        transform: none;
    }
}

.action-buttons-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 40px auto 30px;
    max-width: 500px;
}

.action-btn {
    width: 100%;
    max-width: 400px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.action-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.action-btn:hover i {
    transform: scale(1.15) rotate(5deg);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.buy-btn {
    background: linear-gradient(135deg, #0030f0 0%, #0050ff 50%, #0030f0 100%);
    background-size: 200% 100%;
    padding: 22px 36px !important;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 48, 240, 0.4),
                0 3px 10px rgba(0, 48, 240, 0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 48, 240, 0.5),
                0 5px 14px rgba(0, 48, 240, 0.4);
}

.buy-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.wishlist-btn {
    background-color: #ff1493;
    color: #fff;
    font-size: 14px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: 10px;
}

.wishlist-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.wishlist-btn:hover {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 100%);
    border-color: #ffb6c1;
    color: #ff1493;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(255, 20, 147, 0.15);
}

.wishlist-btn:hover::after {
    opacity: 1;
}

.wishlist-btn:hover i.fa-heart {
    color: #ff1493;
}

.wishlist-btn:active {
    transform: translateY(0) scale(1.01);
}

.dark-mode .wishlist-btn {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    color: #ccc;
    border-color: #444;
}

.dark-mode .wishlist-btn:hover {
    background: linear-gradient(135deg, #3a2a3a 0%, #4a3a4a 100%);
    border-color: #ff69b4;
    color: #ffb6d9;
    box-shadow: 0 6px 18px rgba(255, 105, 180, 0.2);
}

.wishlist-btn.added {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.wishlist-btn.added::after {
    display: none;
}

.dark-mode .wishlist-btn.added {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
}

.wishlist-btn.added:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #059669;
    color: white;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.wishlist-btn.added i.fa-check-circle {
    color: white;
}

.wishlist-btn .remove-icon {
    display: none;
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.wishlist-btn.added .remove-icon {
    display: inline;
}

.wishlist-btn .remove-icon:hover {
    transform: scale(1.4) rotate(90deg);
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(0, 48, 240, 0.4),
                    0 3px 10px rgba(0, 48, 240, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 48, 240, 0.6),
                    0 5px 14px rgba(0, 48, 240, 0.5);
    }
    100% {
        box-shadow: 0 6px 20px rgba(0, 48, 240, 0.4),
                    0 3px 10px rgba(0, 48, 240, 0.3);
    }
}

.buy-btn {
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
}

.buy-confirmation-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border-color);
}

.buy-details {
    margin-bottom: 15px;
}

.buy-domain-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.buy-price {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.buy-warning {
    color: var(--danger-color);
    margin-bottom: 15px;
}

.popup-buttons {
    display: flex;
    justify-content: space-around;
}

.confirm-btn, .cancel-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.confirm-btn {
    background: var(--primary-color);
    color: white;
}

.cancel-btn {
    background: #ccc;
    color: #333;
}

.login-required-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border-color);
}

.auth-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.auth-btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.login-btn {
    background: var(--primary-color);
    color: white;
}

.register-btn {
    background: #ccc;
    color: #333;
}
/* Share Section Styles - All Blue Design */
.share-section {
    margin: 40px auto 30px;
    ##max-width: 800px;
    text-align: center;
}

.share-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: linear-gradient(135deg, #0030f0 0%, #0050ff 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 48, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.share-btn:hover::before {
    width: 100%;
    height: 100%;
}

.share-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 48, 240, 0.5);
}

.share-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.share-btn i {
    position: relative;
    z-index: 1;
}

.share-count {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.dark-mode .share-btn {
    background: linear-gradient(135deg, #3e62ff 0%, #0030f0 100%);
    box-shadow: 0 4px 12px rgba(62, 98, 255, 0.3);
}

.dark-mode .share-btn:hover {
    box-shadow: 0 8px 20px rgba(62, 98, 255, 0.5);
}

.share-message {
    display: none;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--success-color);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    15% {
        opacity: 1;
        transform: translateY(0);
    }
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* QR Code Modal */
.qr-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border-color);
}

.qr-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.qr-close:hover {
    background: var(--border-color);
}

.qr-modal h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.qr-code-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

.qr-code-container img {
    display: block;
    max-width: 100%;
    height: auto;
}

.qr-description {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design for Share Section */
@media (max-width: 768px) {
    .share-buttons {
        gap: 12px;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .share-title {
        font-size: 1rem;
    }
    
    .share-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-count {
        font-size: 0.7rem;
    }
}