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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #1d3fc7;
            color: var(--dark);
            overflow-x: hidden;
        }

        .stats-hero {
            position: relative;
            height: 64vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--gradient);
            color: rgb(255, 255, 255);
        }

        .hero-content {
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
            max-height: 30px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(30px);
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--success);
            top: 20%;
            left: 10%;
            animation: float 15s ease-in-out infinite;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: white;
            bottom: 10%;
            right: 10%;
            animation: float 18s ease-in-out infinite reverse;
        }

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

        .property-stats-container {
            max-width: 1400px;
            margin: -100px auto 100px;
            padding: 0 20px;
            position: relative;
            z-index: 3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 1200px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .stats-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            position: relative;
            z-index: 1;
        }

        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }

        .stats-card:hover::before {
            opacity: 0.05;
        }

        .stats-card-header {
            padding: 25px;
            border-bottom: 1px solid rgba(131, 239, 0, 0.969);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .stats-card-header h2 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 600;
        }

        .stats-card-header i {
            font-size: 1.8rem;
            color: var(--accent);
            opacity: 0.7;
        }

        .stats-card-body {
            padding: 25px;
        }

        .evaluation-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .evaluation-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .trait-name {
            min-width: 150px;
            font-weight: 500;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .rating-container {
            flex-grow: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rating-bar {
            flex-grow: 1;
            height: 8px;
            background: rgba(0,0,0,0.05);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .rating-fill {
            height: 100%;
            border-radius: 10px;
            background:rgb(3, 212, 14) ;
            position: relative;
            transition: width 1.5s ease-out;
            width: 0;
        }

        .rating-value {
            min-width: 50px;
            text-align: right;
            font-weight: 600;
            font-size: 0.9rem;
            color: rgb(31, 7, 208);
        }

        .charts-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .chart-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .chart-wrapper {
            position: relative;
            height: 250px;
            margin-top: 20px;
        }

        .stats-highlight {
            margin-top: 30px;
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .stats-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .stats-highlight h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .stats-highlight p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .total-score {
            font-size: 4rem;
            font-weight: 700;
            background: #073db2;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 20px 0;
            line-height: 1;
        }

        .score-label {
            font-size: 1rem;
            color: #073db2;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .stars {
            margin: 20px 0;
            color: rgba(208, 190, 27, 0.877);
            font-size: 1.5rem;
        }

        .pulse-circle {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(67, 97, 238, 0.1);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 3s infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.7; }
            70% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
            100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .stats-card-header {
                padding: 20px;
            }
            
            .stats-card-body {
                padding: 20px;
            }
            
            .stats-highlight {
                padding: 30px 20px;
            }
            
            .total-score {
                font-size: 3rem;
            }
        }