/* Home Page Visual Enhancements */

/* Increased Font Sizes for Better Readability */
.landing-page {
    font-size: 1.1rem;
}

/* Just Launched Banner */
.launch-banner-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.launch-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(240, 173, 78, 0.25) 100%);
    border: 2px solid #f0ad4e;
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.launch-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.launch-badge {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.pulse-badge {
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
    }
}

.launch-date {
    color: var(--bs-body-color);
    font-size: 0.95rem;
    opacity: 0.8;
    z-index: 1;
    position: relative;
}

.sk-header-title {
    font-size: 2.8rem !important;
}

.sk-header-description {
    font-size: 1.3rem !important;
}

.sk-featured-title {
    font-size: 2.2rem !important;
}

.sk-featured-description {
    font-size: 1.2rem !important;
    line-height: 1.8;
}

/* Product Name Styling */
.product-name {
    font-size: 2rem !important;
    font-weight: bold;
    color: #ffc107;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Quick Stats */
.featured-header-wrapper {
    margin-bottom: 1.5rem;
}

.quick-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(240, 173, 78, 0.1) 0%, rgba(240, 173, 78, 0.05) 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(240, 173, 78, 0.3);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 173, 78, 0.3);
    border-color: rgba(240, 173, 78, 0.6);
}

.stat-item i {
    color: #ffc107;
    font-size: 1.1rem;
}

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

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #f0ad4e;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.highlight-item:hover {
    background: rgba(240, 173, 78, 0.08);
    transform: translateX(10px);
    border-left-width: 5px;
}

.highlight-item i {
    font-size: 1.3rem;
    min-width: 24px;
}

/* Platform Badge */
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0, 120, 212, 0.3);
    transition: all 0.3s ease;
}

.platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 120, 212, 0.5);
}

.platform-badge i {
    font-size: 1.2rem;
}

/* OCTOM Icon Hover Effects - Original Small Icon */
.octom-icon-link {
    display: inline-block;
    text-decoration: none;
}

.octom-icon-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.octom-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.octom-icon-small {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease;
}

.octom-icon-wrapper:hover .octom-icon-small {
    filter: drop-shadow(0 8px 16px rgba(255, 193, 7, 0.5));
}

.octom-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 50%;
}

.octom-icon-wrapper:hover .octom-glow {
    opacity: 1;
    animation: rotate-glow 3s linear infinite;
}

/* OCTOM Icon - Large Version (2x size) */
.octom-icon-wrapper-large {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 300px;
    transition: transform 0.4s ease;
}

.octom-icon-wrapper-large:hover {
    transform: scale(1.08) rotate(3deg);
}

.octom-icon-large {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.octom-icon-wrapper-large:hover .octom-icon-large {
    filter: drop-shadow(0 12px 30px rgba(255, 193, 7, 0.6));
}

.octom-glow-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.4) 0%, rgba(255, 193, 7, 0.2) 40%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    animation: pulse-glow-large 3s ease-in-out infinite;
}

@keyframes pulse-glow-large {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.octom-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 193, 7, 0.6);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 193, 7, 0.8));
    }
}

@keyframes rotate-glow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

/* Button Hover Effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-hover-effect:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Changelog Section */
.sk-changelog-container {
    background: linear-gradient(135deg, rgba(240, 173, 78, 0.05) 0%, rgba(240, 173, 78, 0.1) 100%);
    border: 2px solid rgba(240, 173, 78, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sk-changelog-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f0ad4e, #ffc107, #f0ad4e);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.sk-changelog-container:hover::before {
    opacity: 0.3;
    animation: border-glow 2s ease-in-out infinite;
}

.sk-changelog-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 173, 78, 0.3);
}

@keyframes border-glow {
    0%, 100% {
        filter: blur(5px);
    }
    50% {
        filter: blur(10px);
    }
}

.sk-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.sk-section-icon {
    font-size: 2rem;
    color: #f0ad4e;
    animation: wrench-spin 3s ease-in-out infinite;
}

@keyframes wrench-spin {
    0%, 90%, 100% {
        transform: rotate(0deg);
    }
    95% {
        transform: rotate(-15deg);
    }
}

.sk-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-body-color);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sk-changelog-content {
    background: rgba(var(--bs-body-bg-rgb), 0.5);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #f0ad4e;
    transition: all 0.3s ease;
}

.sk-changelog-content:hover {
    background: rgba(var(--bs-body-bg-rgb), 0.7);
    border-left-width: 6px;
}

.sk-changelog-placeholder {
    color: var(--bs-secondary-color);
    font-style: italic;
    margin: 0;
    font-size: 1.25rem;
}

/* Featured Container Enhancements */
.sk-featured-container {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(240, 173, 78, 0.03) 0%, rgba(240, 173, 78, 0.08) 100%);
    border: 1px solid rgba(240, 173, 78, 0.2);
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sk-featured-container:hover {
    background: linear-gradient(135deg, rgba(240, 173, 78, 0.06) 0%, rgba(240, 173, 78, 0.12) 100%);
    border-color: rgba(240, 173, 78, 0.4);
    box-shadow: 0 10px 30px rgba(240, 173, 78, 0.15);
}

/* CTA Group Styling */
.cta-group {
    width: 280px;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-primary-cta {
    font-weight: bold;
    font-size: 1.05rem !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::after {
    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.5s ease, height 0.5s ease;
}

.btn-primary-cta:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.beta-cta {
    animation: fadeIn 1.2s ease;
}

.cta-group .btn {
    font-size: 1rem;
    padding: 0.7rem 1rem;
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-group .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Dark Mode Adjustments */
[data-bs-theme="dark"] .sk-changelog-container {
    background: linear-gradient(135deg, rgba(240, 173, 78, 0.1) 0%, rgba(240, 173, 78, 0.15) 100%);
    border-color: rgba(240, 173, 78, 0.4);
}

[data-bs-theme="dark"] .octom-icon-small {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

[data-bs-theme="dark"] .octom-icon-wrapper:hover .octom-icon-small {
    filter: drop-shadow(0 8px 16px rgba(255, 193, 7, 0.7));
}

/* Privacy Section Styles */
.sk-privacy-container {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sk-privacy-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.5);
}

.sk-privacy-icon-shield {
    animation: shield-pulse 2s ease-in-out infinite;
    color: #28a745;
    font-size: 2.5rem;
}

.sk-privacy-icon-computer {
    animation: computer-glow 3s ease-in-out infinite;
    color: #0dcaf0;
    font-size: 2rem;
}

@keyframes shield-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(40, 167, 69, 0.3)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(40, 167, 69, 0.7)); }
}

@keyframes computer-glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(13, 202, 240, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(13, 202, 240, 0.7)); }
}

.sk-privacy-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bs-body-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Software Page Privacy Styles */
.sk-software-privacy {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.03) 0%, rgba(40, 167, 69, 0.08) 100%);
    border: 2px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.sk-privacy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Whitepaper Page Styles */
.sk-whitepaper-container {
    background: linear-gradient(135deg, rgba(240, 173, 78, 0.05) 0%, rgba(240, 173, 78, 0.1) 100%);
    border: 2px solid rgba(240, 173, 78, 0.3);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.sk-whitepaper-icon {
    font-size: 3rem;
    color: #f0ad4e;
    animation: shield-pulse 3s ease-in-out infinite;
}

.sk-whitepaper-content {
    margin-top: 2rem;
}

.sk-whitepaper-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sk-whitepaper-content p,
.sk-whitepaper-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bs-body-color);
}

.sk-whitepaper-content ul {
    padding-left: 2rem;
}

.sk-whitepaper-content li {
    margin-bottom: 0.5rem;
}

/* Dark Mode Adjustments */
[data-bs-theme="dark"] .sk-privacy-container {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.15) 100%);
    border-color: rgba(40, 167, 69, 0.4);
}

[data-bs-theme="dark"] .sk-software-privacy {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

[data-bs-theme="dark"] .sk-whitepaper-container {
    background: linear-gradient(135deg, rgba(240, 173, 78, 0.1) 0%, rgba(240, 173, 78, 0.15) 100%);
    border-color: rgba(240, 173, 78, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sk-privacy-container,
    .sk-software-privacy,
    .sk-whitepaper-container {
        padding: 1.5rem;
    }
    
    .sk-privacy-icon-shield {
        font-size: 2rem;
    }
    
    .sk-privacy-icon-computer {
        font-size: 1.5rem;
    }
    
    .sk-whitepaper-icon {
        font-size: 2rem;
    }
}

/* News Section */
.sk-news-container {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.05) 0%, rgba(13, 202, 240, 0.1) 100%);
    border: 2px solid rgba(13, 202, 240, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sk-news-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 202, 240, 0.2);
    border-color: rgba(13, 202, 240, 0.5);
}

.sk-news-content {
    background: rgba(var(--bs-body-bg-rgb), 0.5);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #0dcaf0;
    transition: all 0.3s ease;
}

.sk-news-content:hover {
    background: rgba(var(--bs-body-bg-rgb), 0.7);
    border-left-width: 6px;
}

.sk-news-text {
    color: var(--bs-body-color);
    font-size: 1.25rem;
    margin: 0;
}

.sk-news-link {
    color: #0dcaf0;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sk-news-link:hover {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

[data-bs-theme="dark"] .sk-news-container {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(13, 202, 240, 0.15) 100%);
    border-color: rgba(13, 202, 240, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sk-section-icon {
        font-size: 1.5rem;
    }
    
    .sk-section-title {
        font-size: 1.5rem;
    }
    
    .octom-icon-wrapper:hover {
        transform: scale(1.05) rotate(3deg);
    }
    
    .sk-featured-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .sk-featured-image {
        margin-left: 0 !important;
        width: 100%;
    }
    
    .octom-icon-wrapper-large {
        width: 200px;
        height: 200px;
    }
    
    .cta-group {
        width: 100%;
        max-width: 280px;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .launch-banner {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
    }
    
    .launch-badge {
        font-size: 1rem;
    }
    
    .product-name {
        font-size: 1.5rem !important;
    }
}
