.ocean-friend-links-section {
    background: linear-gradient(180deg, var(--ocean-bg) 0%, var(--ocean-white) 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--ocean-border);
}

.ocean-friend-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


.ocean-section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ocean-decoration-wave {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--ocean-primary);
    opacity: 0.05;
    border-radius: 0 0 50% 50%;
    animation: oceanDecoWave 6s ease-in-out infinite;
}

@keyframes oceanDecoWave {

    0%,
    100% {
        transform: scaleX(1) scaleY(1);
    }

    50% {
        transform: scaleX(1.1) scaleY(0.8);
    }
}

.ocean-decoration-bubble {
    position: absolute;
    background: var(--ocean-primary);
    border-radius: 50%;
    opacity: 0.08;
    animation: oceanBubbleFloat 8s ease-in-out infinite;
}

.ocean-bubble-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ocean-bubble-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.ocean-bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation-delay: -4s;
}

@keyframes oceanBubbleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.12;
    }
}


.ocean-friend-links-header {
    text-align: center;
    margin-bottom: 40px;
}

.ocean-section-title-wrapper {
    position: relative;
    display: inline-block;
}

.ocean-friend-links-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ocean-text);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.ocean-title-icon {
    width: 50px;
    height: 50px;
    background: var(--ocean-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-white);
    font-size: 24px;
    position: relative;
    overflow: hidden;
}

.ocean-title-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: oceanIconShine 3s ease-in-out infinite;
}

@keyframes oceanIconShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.ocean-title-text {
    position: relative;
}

.ocean-title-decoration {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--ocean-primary);
    border-radius: 2px;
}

.ocean-friend-links-desc {
    font-size: 16px;
    color: var(--ocean-text-light);
    margin: 0;
    line-height: 1.6;
}


.ocean-friend-links-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ocean-friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.ocean-friend-links-actions {
    display: flex;
    justify-content: center;
}

.ocean-apply-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--ocean-primary);
    color: var(--ocean-white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--ocean-shadow);
    position: relative;
    overflow: hidden;
}

.ocean-apply-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--ocean-primary-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.ocean-apply-link-btn:hover::before {
    left: 0;
}

.ocean-apply-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--ocean-shadow-dark);
}

.ocean-apply-link-btn.ocean-loading {
    pointer-events: none;
    opacity: 0.7;
}

.ocean-apply-link-btn.ocean-loading i {
    animation: oceanSpin 1s linear infinite;
}

@keyframes oceanSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.link-item.ocean-hover-effect {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--ocean-shadow);
}


.ocean-stats-section {
    background: var(--ocean-primary);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.ocean-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: oceanStatsPattern 20s linear infinite;
}

@keyframes oceanStatsPattern {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100px);
    }
}

.ocean-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ocean-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ocean-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ocean-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.ocean-stat-item:hover::before {
    left: 100%;
}

.ocean-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ocean-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-white);
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.ocean-stat-item:hover .ocean-stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.ocean-stat-content {
    position: relative;
    z-index: 2;
}

.ocean-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--ocean-white);
    margin-bottom: 8px;
    line-height: 1;
}

.ocean-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
}


.ocean-footer {
    background: var(--ocean-text);
    color: var(--ocean-white);
    position: relative;
    overflow: hidden;
}


.ocean-footer-waves {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: -1px;
}

.ocean-wave-svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.ocean-wave-shape-fill {
    fill: var(--ocean-white);
}

.ocean-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ocean-footer-content {
    display: flex;
    flex-direction: column;
}


.ocean-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ocean-footer-brand {
    flex: 1;
    max-width: 400px;
}

.ocean-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--ocean-white);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.ocean-footer-logo:hover {
    transform: translateY(-2px);
}

.ocean-footer-logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--ocean-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-white);
    font-size: 24px;
    overflow: hidden;
}

.ocean-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: oceanLogoGlow 3s ease-in-out infinite;
}

@keyframes oceanLogoGlow {

    0%,
    100% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    50% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.ocean-footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ocean-footer-site-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--ocean-white);
    line-height: 1.2;
}

.ocean-footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.ocean-footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


.ocean-footer-links {
    display: flex;
    gap: 50px;
    flex: 1;
}

.ocean-footer-column {
    flex: 1;
    min-width: 200px;
}

.ocean-footer-column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ocean-white);
    margin: 0 0 20px 0;
    position: relative;
}

.ocean-footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--ocean-primary);
    border-radius: 1px;
}

.ocean-footer-column-title i {
    color: var(--ocean-primary);
    font-size: 20px;
}

.ocean-footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ocean-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.ocean-footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--ocean-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.ocean-footer-link:hover {
    color: var(--ocean-white);
    padding-left: 20px;
}

.ocean-footer-link:hover::before {
    opacity: 1;
}


.ocean-social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.ocean-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ocean-social-link:hover {
    background: var(--ocean-primary);
    color: var(--ocean-white);
    transform: translateX(5px);
    border-color: var(--ocean-primary);
}

.ocean-social-link.ocean-clicked {
    transform: scale(0.95);
}

.ocean-social-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.ocean-social-text {
    font-size: 14px;
    font-weight: 500;
}


.ocean-qr-code {
    margin-top: 20px;
}

.ocean-qr-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.ocean-qr-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.ocean-qr-placeholder i {
    font-size: 24px;
}

.ocean-qr-placeholder span {
    font-size: 12px;
    font-weight: 500;
}


.ocean-footer-bottom {
    padding: 30px 0;
}

.ocean-footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.ocean-copyright-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ocean-icp-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ocean-icp-info i {
    color: var(--ocean-primary);
    font-size: 14px;
}

.ocean-icp-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ocean-icp-link:hover {
    color: var(--ocean-primary);
}

.ocean-copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.ocean-copyright-right {
    display: flex;
    align-items: center;
}

.ocean-powered-by {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ocean-powered-by i {
    color: #e74c3c;
    animation: oceanHeartbeat 1.5s ease-in-out infinite;
}

@keyframes oceanHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}


.ocean-footer-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.ocean-runtime-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ocean-runtime-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.ocean-runtime-item i {
    color: var(--ocean-primary);
    font-size: 14px;
}


.ocean-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--ocean-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--ocean-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.ocean-back-to-top.ocean-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ocean-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--ocean-shadow-dark);
    background: var(--ocean-primary-dark);
}

.ocean-back-to-top-icon {
    color: var(--ocean-white);
    font-size: 20px;
    margin-bottom: 2px;
}

.ocean-back-to-top-text {
    color: var(--ocean-white);
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}


.ocean-floating-contact {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
    transition: all 0.3s ease;
}

.ocean-contact-trigger {
    width: 60px;
    height: 60px;
    background: var(--ocean-secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
    color: var(--ocean-white);
}

.ocean-contact-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 188, 212, 0.4);
}

.ocean-contact-trigger i {
    font-size: 20px;
    margin-bottom: 2px;
}

.ocean-contact-text {
    font-size: 10px;
    font-weight: 600;
}

.ocean-contact-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: var(--ocean-white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    border: 1px solid var(--ocean-border);
}

.ocean-floating-contact.ocean-expanded .ocean-contact-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ocean-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--ocean-border);
    background: var(--ocean-bg);
    border-radius: 15px 15px 0 0;
}

.ocean-contact-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ocean-text);
    margin: 0;
}

.ocean-contact-close {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--ocean-border);
    border-radius: 6px;
    color: var(--ocean-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ocean-contact-close:hover {
    background: var(--ocean-primary);
    color: var(--ocean-white);
}

.ocean-contact-content {
    padding: 25px;
}

.ocean-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--ocean-border);
}

.ocean-contact-item:last-child {
    border-bottom: none;
}

.ocean-contact-item i {
    width: 40px;
    height: 40px;
    background: var(--ocean-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-primary);
    font-size: 18px;
}

.ocean-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ocean-contact-label {
    font-size: 12px;
    color: var(--ocean-text-light);
    font-weight: 600;
}

.ocean-contact-value {
    font-size: 14px;
    color: var(--ocean-text);
    font-weight: 500;
}


@media (max-width: 1024px) {
    .ocean-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ocean-footer-main {
        gap: 40px;
    }

    .ocean-footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ocean-friend-links-section {
        padding: 40px 0 30px;
    }

    .ocean-friend-links-container {
        padding: 0 15px;
    }

    .ocean-friend-links-title {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .ocean-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ocean-stat-item {
        padding: 25px 15px;
    }

    .ocean-footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 50px 0 40px;
    }

    .ocean-footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .ocean-footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .ocean-runtime-info {
        flex-direction: column;
        gap: 15px;
    }

    .ocean-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .ocean-back-to-top-icon {
        font-size: 18px;
    }

    .ocean-back-to-top-text {
        font-size: 9px;
    }

    .ocean-floating-contact {
        bottom: 90px;
        right: 20px;
    }

    .ocean-contact-trigger {
        width: 50px;
        height: 50px;
    }

    .ocean-contact-trigger i {
        font-size: 18px;
    }

    .ocean-contact-text {
        font-size: 9px;
    }

    .ocean-contact-panel {
        width: 260px;
        bottom: 60px;
    }
}

@media (max-width: 480px) {
    .ocean-friend-links-section {
        padding: 30px 0 25px;
    }

    .ocean-friend-links-container {
        padding: 0 10px;
    }

    .ocean-friend-links-title {
        font-size: 20px;
    }

    .ocean-title-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .ocean-stats-section {
        padding: 40px 0;
    }

    .ocean-stat-item {
        padding: 20px 15px;
    }

    .ocean-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .ocean-stat-number {
        font-size: 24px;
    }

    .ocean-footer-container {
        padding: 0 10px;
    }

    .ocean-footer-main {
        padding: 40px 0 30px;
        gap: 30px;
    }

    .ocean-footer-brand {
        max-width: 100%;
    }

    .ocean-footer-column {
        min-width: auto;
    }

    .ocean-footer-column-title {
        font-size: 16px;
    }

    .ocean-footer-link {
        font-size: 13px;
    }

    .ocean-social-links {
        gap: 12px;
    }

    .ocean-social-link {
        padding: 10px 12px;
    }

    .ocean-qr-placeholder {
        width: 100px;
        height: 100px;
    }

    .ocean-qr-placeholder i {
        font-size: 20px;
    }

    .ocean-qr-placeholder span {
        font-size: 11px;
    }

    .ocean-footer-bottom {
        padding: 25px 0;
    }

    .ocean-copyright-left {
        gap: 10px;
    }

    .ocean-icp-info {
        font-size: 12px;
    }

    .ocean-copyright-text {
        font-size: 12px;
    }

    .ocean-powered-by {
        font-size: 12px;
    }

    .ocean-runtime-info {
        gap: 20px;
    }

    .ocean-runtime-item {
        font-size: 11px;
    }

    .ocean-back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .ocean-back-to-top-icon {
        font-size: 16px;
    }

    .ocean-back-to-top-text {
        font-size: 8px;
    }

    .ocean-floating-contact {
        bottom: 75px;
        right: 15px;
    }

    .ocean-contact-trigger {
        width: 45px;
        height: 45px;
    }

    .ocean-contact-trigger i {
        font-size: 16px;
    }

    .ocean-contact-text {
        font-size: 8px;
    }

    .ocean-contact-panel {
        width: 240px;
        bottom: 55px;
        right: -10px;
    }

    .ocean-contact-header {
        padding: 15px 20px;
    }

    .ocean-contact-header h4 {
        font-size: 14px;
    }

    .ocean-contact-content {
        padding: 20px;
    }

    .ocean-contact-item {
        padding: 12px 0;
    }

    .ocean-contact-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .ocean-contact-label {
        font-size: 11px;
    }

    .ocean-contact-value {
        font-size: 13px;
    }
}


@media (max-width: 320px) {
    .ocean-friend-links-section {
        padding: 25px 0 20px;
    }

    .ocean-friend-links-container {
        padding: 0 8px;
    }

    .ocean-friend-links-title {
        font-size: 18px;
        gap: 8px;
    }

    .ocean-title-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        border-radius: 8px;
    }

    .ocean-friend-links-desc {
        font-size: 14px;
    }

    .ocean-apply-link-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .ocean-stats-section {
        padding: 35px 0;
    }

    .ocean-stats-container {
        padding: 0 8px;
    }

    .ocean-stat-item {
        padding: 18px 12px;
    }

    .ocean-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .ocean-stat-number {
        font-size: 20px;
    }

    .ocean-stat-label {
        font-size: 14px;
    }

    .ocean-footer-container {
        padding: 0 8px;
    }

    .ocean-footer-main {
        padding: 35px 0 25px;
        gap: 25px;
    }

    .ocean-footer-logo {
        gap: 12px;
        margin-bottom: 20px;
    }

    .ocean-footer-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .ocean-footer-site-name {
        font-size: 18px;
    }

    .ocean-footer-tagline {
        font-size: 12px;
    }

    .ocean-footer-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .ocean-footer-column-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .ocean-footer-column-title i {
        font-size: 16px;
    }

    .ocean-footer-link-list {
        gap: 10px;
    }

    .ocean-footer-link {
        font-size: 12px;
        padding-left: 12px;
    }

    .ocean-social-links {
        gap: 10px;
    }

    .ocean-social-link {
        padding: 8px 10px;
        gap: 10px;
    }

    .ocean-social-link i {
        font-size: 16px;
    }

    .ocean-social-text {
        font-size: 12px;
    }

    .ocean-qr-placeholder {
        width: 80px;
        height: 80px;
    }

    .ocean-qr-placeholder i {
        font-size: 18px;
    }

    .ocean-qr-placeholder span {
        font-size: 10px;
    }

    .ocean-footer-bottom {
        padding: 20px 0;
    }

    .ocean-footer-copyright {
        gap: 15px;
    }

    .ocean-copyright-left {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .ocean-icp-info {
        font-size: 11px;
    }

    .ocean-copyright-text {
        font-size: 11px;
        text-align: center;
    }

    .ocean-powered-by {
        font-size: 11px;
    }

    .ocean-footer-extra {
        padding-top: 15px;
    }

    .ocean-runtime-info {
        gap: 15px;
    }

    .ocean-runtime-item {
        font-size: 10px;
    }

    .ocean-runtime-item i {
        font-size: 12px;
    }

    .ocean-back-to-top {
        bottom: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .ocean-back-to-top-icon {
        font-size: 14px;
    }

    .ocean-back-to-top-text {
        display: none;
    }

    .ocean-floating-contact {
        bottom: 65px;
        right: 12px;
    }

    .ocean-contact-trigger {
        width: 40px;
        height: 40px;
    }

    .ocean-contact-trigger i {
        font-size: 14px;
    }

    .ocean-contact-text {
        display: none;
    }

    .ocean-contact-panel {
        width: 220px;
        bottom: 50px;
        right: -15px;
    }

    .ocean-contact-header {
        padding: 12px 15px;
    }

    .ocean-contact-header h4 {
        font-size: 13px;
    }

    .ocean-contact-close {
        width: 25px;
        height: 25px;
    }

    .ocean-contact-content {
        padding: 15px;
    }

    .ocean-contact-item {
        padding: 10px 0;
        gap: 12px;
    }

    .ocean-contact-item i {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .ocean-contact-label {
        font-size: 10px;
    }

    .ocean-contact-value {
        font-size: 12px;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .ocean-friend-links-section {
        padding: 30px 0 25px;
    }

    .ocean-stats-section {
        padding: 30px 0;
    }

    .ocean-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .ocean-stat-item {
        padding: 20px 15px;
    }

    .ocean-footer-main {
        padding: 40px 0 30px;
    }

    .ocean-back-to-top {
        bottom: 15px;
        right: 15px;
    }

    .ocean-floating-contact {
        bottom: 85px;
        right: 15px;
    }

    .ocean-contact-panel {
        max-height: 300px;
        overflow-y: auto;
    }
}


body.ocean-dark-theme .ocean-friend-links-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top-color: #333;
}

body.ocean-dark-theme .ocean-footer {
    background: #1a1a1a;
}

body.ocean-dark-theme .ocean-contact-panel {
    background: #2a2a2a;
    border-color: #333;
}

body.ocean-dark-theme .ocean-contact-header {
    background: #333;
    border-bottom-color: #444;
}

body.ocean-dark-theme .ocean-contact-header h4 {
    color: #fff;
}

body.ocean-dark-theme .ocean-contact-item {
    border-bottom-color: #333;
}

body.ocean-dark-theme .ocean-contact-item i {
    background: #333;
}

body.ocean-dark-theme .ocean-contact-label {
    color: #aaa;
}

body.ocean-dark-theme .ocean-contact-value {
    color: #fff;
}


@media (prefers-contrast: high) {

    .ocean-friend-links-section,
    .ocean-stats-section,
    .ocean-footer {
        border: 2px solid var(--ocean-primary);
    }

    .ocean-stat-item,
    .ocean-social-link,
    .ocean-apply-link-btn,
    .ocean-back-to-top,
    .ocean-contact-trigger {
        border: 2px solid currentColor;
    }

    .ocean-footer-link::before {
        width: 8px;
        height: 8px;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ocean-decoration-bubble,
    .ocean-decoration-wave,
    .ocean-logo-glow,
    .ocean-title-icon::before {
        display: none;
    }
}


@media print {

    .ocean-friend-links-section,
    .ocean-stats-section,
    .ocean-footer {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    .ocean-decoration-bubble,
    .ocean-decoration-wave,
    .ocean-back-to-top,
    .ocean-floating-contact,
    .ocean-footer-waves {
        display: none !important;
    }

    .ocean-stat-item,
    .ocean-social-link {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }

    .ocean-footer-main {
        border-bottom: 2px solid #000 !important;
    }

    .ocean-footer-column-title,
    .ocean-footer-site-name {
        color: #000 !important;
    }

    .ocean-footer-link,
    .ocean-copyright-text,
    .ocean-runtime-item {
        color: #333 !important;
    }

    .ocean-social-text {
        color: #000 !important;
    }
}


.ocean-stat-item,
.ocean-social-link,
.ocean-apply-link-btn,
.ocean-back-to-top,
.ocean-contact-trigger,
.ocean-contact-panel {
    will-change: transform;
    backface-visibility: hidden;
}


.ocean-friend-links-section,
.ocean-stats-section,
.ocean-footer {
    transform: translateZ(0);
}


.ocean-decoration-bubble,
.ocean-stat-item,
.ocean-footer-logo,
.ocean-social-link {
    will-change: transform;
    backface-visibility: hidden;
}


.ocean-contact-panel::-webkit-scrollbar {
    width: 6px;
}

.ocean-contact-panel::-webkit-scrollbar-track {
    background: rgba(33, 150, 243, 0.1);
    border-radius: 3px;
}

.ocean-contact-panel::-webkit-scrollbar-thumb {
    background: var(--ocean-primary);
    border-radius: 3px;
}

.ocean-contact-panel::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-primary-dark);
}


.ocean-friend-links-section *,
.ocean-stats-section *,
.ocean-footer * {
    box-sizing: border-box;
}

.ocean-friend-links-section img,
.ocean-stats-section img,
.ocean-footer img {
    max-width: 100%;
    height: auto;
}

.ocean-friend-links-section a,
.ocean-stats-section a,
.ocean-footer a {
    color: inherit;
    text-decoration: none;
}

.ocean-friend-links-section button,
.ocean-stats-section button,
.ocean-footer button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}


body.ocean-dark-theme .ocean-friend-links-title,
body.ocean-dark-theme .ocean-friend-links-desc {
    color: #fff;
}

body.ocean-dark-theme .ocean-apply-link-btn {
    background: var(--ocean-primary);
    color: #fff;
}

body.ocean-dark-theme .ocean-apply-link-btn:hover {
    background: var(--ocean-primary-dark);
}


@supports not (: blur(10px)) {
    .ocean-contact-panel {
        background: rgba(255, 255, 255, 0.95);
    }

    body.ocean-dark-theme .ocean-contact-panel {
        background: rgba(42, 42, 42, 0.95);
    }
}


.ocean-back-to-top {
    z-index: 1000;
}

.ocean-floating-contact {
    z-index: 999;
}

.ocean-contact-panel {
    z-index: 1001;
}


@keyframes oceanFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ocean-stats-section.ocean-animated .ocean-stat-item {
    animation: oceanFadeInUp 0.6s ease-out forwards;
}

.ocean-stats-section.ocean-animated .ocean-stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.ocean-stats-section.ocean-animated .ocean-stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.ocean-stats-section.ocean-animated .ocean-stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.ocean-stats-section.ocean-animated .ocean-stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.ocean-body {
    overflow-x: hidden;
}

.ocean-friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}