/**
 * FXTM-Inspired Theme for Cryptnificent Trading Platform
 * ========================================================
 * Custom theme stylesheet implementing FXTM's premium aesthetic
 * with dark backgrounds, orange accent colors, and modern gradients.
 */

/* ============================================
   CSS Custom Properties (Color Palette)
   ============================================ */
:root {
    /* Primary Colors */
    --fxtm-dark-navy: #2D3748;
    --fxtm-darker-navy: #1A202C;
    --fxtm-charcoal: #3D4554;

    /* Orange Accent Colors */
    --fxtm-orange-primary: #FF5722;
    --fxtm-orange-hover: #FF6B3D;
    --fxtm-orange-light: rgba(255, 87, 34, 0.12);

    /* Text Colors */
    --fxtm-text-white: #FFFFFF;
    --fxtm-text-gray: #B4C2E4;
    --fxtm-text-muted: #8FA4D7;

    /* Gradient Colors */
    --fxtm-gradient-orange: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    --fxtm-gradient-blue: linear-gradient(135deg, #2D3E50 0%, #3D5A80 100%);
    --fxtm-gradient-blue-dark: linear-gradient(180deg, #1A2332 0%, #0D1929 100%);

    /* Professional Financial Typography */
    --fxtm-font-primary: 'IBM Plex Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fxtm-font-numbers: 'Roboto', 'IBM Plex Sans', monospace;
}

/* ============================================
   Global Overrides
   ============================================ */
* {
    font-family: var(--fxtm-font-primary);
}

body {
    background-color: var(--fxtm-darker-navy);
    font-family: var(--fxtm-font-primary);
}

/* ============================================
   Button Styles - FXTM Orange CTA
   ============================================ */
.btn--success,
.btn--primary.fxtm-cta {
    background: var(--fxtm-gradient-orange);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--success:hover,
.btn--primary.fxtm-cta:hover {
    background: var(--fxtm-gradient-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Secondary Button - Outlined Orange */
.btn--default.fxtm-secondary {
    background: transparent;
    border: 2px solid var(--fxtm-orange-primary);
    color: var(--fxtm-orange-primary);
    transition: all 0.3s ease;
}

.btn--default.fxtm-secondary:hover {
    background: var(--fxtm-orange-primary);
    color: var(--fxtm-text-white);
    border-color: var(--fxtm-orange-primary);
}

.page-header__in .r {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-header__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 10px 0;
}

/* ============================================
   Hero Section - Enhanced Version
   ============================================ */
.hero-section-fxtm {
    position: relative;
    background: url('images/hero-cityscape.jpg') no-repeat center center;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    /* Account for fixed navbar */
}

.hero-section-fxtm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(29, 35, 48, 0.85) 0%, rgba(8, 15, 32, 0.95) 100%);
    z-index: 1;
}

/* Animated Background Elements */
.hero-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-float-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-float-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -200px;
    animation-delay: 5s;
}

.hero-float-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Hero Content */
.hero-section-fxtm .hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-top: 40px;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge__icon {
    font-size: 18px;
    color: var(--fxtm-orange-primary) !important;
}

.hero-badge__text {
    color: var(--fxtm-orange-primary) !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Title */
.hero-section-fxtm .hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--fxtm-text-white) !important;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title-gradient {
    background: var(--fxtm-gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Subtitle */
.hero-section-fxtm .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--fxtm-text-gray) !important;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 24px 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 87, 34, 0.3);
}

.hero-feature__icon {
    font-size: 32px;
    color: var(--fxtm-orange-primary);
}

.hero-feature__text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.hero-feature__text strong {
    color: var(--fxtm-text-white) !important;
    font-size: 16px;
    font-weight: 600;
}

.hero-feature__text span {
    color: var(--fxtm-text-muted) !important;
    font-size: 13px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    padding: 16px 36px;
    box-shadow: 0 6px 24px rgba(255, 87, 34, 0.4);
}

.hero-cta-primary:hover {
    box-shadow: 0 8px 32px rgba(255, 87, 34, 0.5);
}

.hero-cta-primary svg {
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-cta-secondary {
    font-size: 18px;
    padding: 16px 36px;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-trust__item strong {
    font-size: 28px;
    font-weight: 700;
    color: var(--fxtm-orange-primary);
}

.hero-trust__item span {
    font-size: 13px;
    color: var(--fxtm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-trust__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Responsive Design */
@media (max-width: 992px) {
    .hero-features {
        gap: 20px;
    }

    .hero-feature {
        padding: 12px 16px;
    }

    .hero-feature__icon {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .invite-friends-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section-fxtm {
        min-height: 600px;
    }

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

    .hero-section-fxtm .hero-subtitle {
        font-size: 16px;
    }

    .hero-break {
        display: none;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin: 30px 0;
    }

    .hero-feature {
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 16px;
        padding: 14px 28px;
        text-align: center;
        justify-content: center;
    }

    .hero-trust {
        gap: 20px;
    }

    .hero-trust__item strong {
        font-size: 22px;
    }

    .hero-trust__item span {
        font-size: 11px;
    }
}

/* ============================================
   Trust Badges Section
   ============================================ */
.trust-badges-section {
    background: var(--fxtm-gradient-blue-dark);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-badge {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.trust-badge:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-badge img {
    height: 30px;
    width: auto;
}

@media (max-width: 992px) {
    .invite-friends-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .trust-badges-container {
        gap: 20px;
    }

    .trust-badge img {
        height: 24px;
    }
}

/* ============================================
   Why Choose Us - Gradient Cards
   ============================================ */
.why-choose-us-section {
    padding: 100px 0;
    background: var(--fxtm-darker-navy);
}

.why-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.why-card {
    background: var(--fxtm-gradient-blue);
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Decorative gradient overlay */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Accent border on hover */
.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.5), rgba(255, 87, 34, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-color: rgba(255, 87, 34, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    opacity: 1;
}

.why-card--new-trader {
    background: var(--fxtm-gradient-orange);
    border-color: rgba(255, 255, 255, 0.15);
}

.why-card--new-trader::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
}

.why-card__icon {
    font-size: 64px;
    margin-bottom: 30px;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.why-card__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fxtm-text-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.why-card__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
}

.why-card__features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card__features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.why-card__features li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fxtm-text-white);
    font-weight: bold;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 12px;
}

.why-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--fxtm-text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-card__cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.why-card__cta::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 20px;
}

.why-card__cta:hover::after {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .invite-friends-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-card {
        padding: 45px 35px;
        border-radius: 16px;
    }

    .why-card__title {
        font-size: 26px;
    }

    .why-card__icon {
        font-size: 52px;
    }

    .why-card__icon {
        font-size: 52px;
    }
}

/* ============================================
   Page Header Enhancement
   ============================================ */
.page-header {
    padding-top: 0 !important;
}

.page-header--fixed {
    background: rgba(8, 15, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   Section Title Styling
   ============================================ */
.title--fxtm {
    position: relative;
    padding-bottom: 20px;
}

.title--fxtm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--fxtm-gradient-orange);
    border-radius: 2px;
}

/* ============================================
   Utility Classes
   ============================================ */
.fxtm-text-gradient {
    background: var(--fxtm-gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fxtm-shadow-orange {
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.2);
}

.fxtm-shadow-blue {
    box-shadow: 0 4px 20px rgba(45, 62, 80, 0.3);
}

/* ============================================
   Text Logo Styles
   ============================================ */
.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-image {
    /* height: 65px; */
    width: 80px;
    display: block;
}

.text-logo {
    text-decoration: none;
    display: inline-block;
}

.text-logo__text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FF5722 0%, #FF6B3D 50%, #FF8A5B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(255, 87, 34, 0.2);
    font-family: var(--fxtm-font-primary);
    transition: all 0.3s ease;
}

.text-logo:hover .text-logo__text {
    background: linear-gradient(135deg, #FF6B3D 0%, #FF8A5B 50%, #FFA573 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .invite-friends-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }

    .text-logo__text {
        font-size: 20px;
    }
}

/* ============================================
   DaisyUI Theme Customizations
   ============================================ */

/* Override DaisyUI button colors to match FXTM branding */
.btn-success {
    background: var(--fxtm-gradient-orange);
    border: none;
    color: var(--fxtm-text-white);
}

.btn-success:hover {
    background: var(--fxtm-gradient-orange);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--fxtm-dark-navy);
    border-color: var(--fxtm-dark-navy);
}

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

.btn-outline {
    border-color: var(--fxtm-orange-primary);
    color: var(--fxtm-text-white);
    border-width: 2px;
    background: transparent !important;
}

.btn-outline:hover {
    background: var(--fxtm-orange-primary) !important;
    border-color: var(--fxtm-orange-primary);
    color: var(--fxtm-text-white);
}

/* DaisyUI Badge customizations */
.badge.hero-badge {
    background: rgba(255, 87, 34, 0.15);
    border-color: rgba(255, 87, 34, 0.3);
    color: var(--fxtm-orange-primary);
}

/* DaisyUI Stats customizations */
.stat-value.text-primary {
    color: var(--fxtm-orange-primary) !important;
}

.stat-title {
    color: var(--fxtm-text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.stats.hero-trust {
    background: transparent;
    border: none;
}

.stats .stat {
    background: transparent;
}

/* DaisyUI Card customizations */
.card {
    background: var(--fxtm-gradient-blue);
}

.card.why-card--new-trader {
    background: var(--fxtm-gradient-orange);
}

.card-body {
    padding: 50px 40px;
}

.card-title {
    color: var(--fxtm-text-white);
}

.card-actions {
    margin-top: 20px;
}

/* ============================================
   "Why Cryptnificent Tradings?" Cards Enhancement
   ============================================ */
.invite-friends {
    background: var(--fxtm-darker-navy);
    padding: 80px 0;
}

.invite-friends__in {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.invite-friends-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.invite-friends-list__item {
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
    background: linear-gradient(135deg, #2D3E50 0%, #1A2332 100%);
    border-radius: 16px;
    padding: 30px 25px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.invite-friends-list__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fxtm-orange-primary), #FF6B3D);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.invite-friends-list__item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 87, 34, 0.2) inset;
    border-color: rgba(255, 87, 34, 0.3);
}

.invite-friends-list__item:hover::before {
    opacity: 1;
}

.invite-friends-list__label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.invite-friends-list__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--fxtm-gradient-orange) !important;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    position: relative;
}

.invite-friends-list__icon::after {
    content: '✓';
    font-size: 28px;
    color: white;
    font-weight: bold;
}

.invite-friends-list__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--fxtm-text-white);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.3;
}

.invite-friends-list__divider {
    display: none;
}

.invite-friends-list__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.invite-friends h6 {
    color: var(--fxtm-text-white) !important;
    font-weight: 600 !important;
    margin-bottom: 15px;
}

.invite-friends .invite-friends-list__text:first-of-type {
    font-size: 18px;
    color: var(--fxtm-text-gray);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .invite-friends-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .invite-friends-list__item {
        flex: 1 1 100%;
        padding: 35px 28px;
    }

    .invite-friends-list__icon {
        width: 50px;
        height: 50px;
    }

    .invite-friends-list__title {
        font-size: 17px;
    }
}